/* Styling for the heading */
.custom-heading {
    font-size: 40px;
    /* Larger font size for the heading */
    font-weight: 700;
    /* Bold font weight */
    line-height: 1.4;
    /* Line spacing for readability */
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background for contrast */
    color: #ffffff;
    /* White text color */
    padding: 20px;
    /* Padding inside the heading */
    border-radius: 8px;
    /* Rounded corners */
    text-align: left;
    /* Align text to the left */
    margin-bottom: 20px;
    /* Space below the heading */
}

/* Styling for the paragraph */
.custom-paragraph {
    font-size: 18px;
    /* Font size for the paragraph */
    font-weight: 500;
    /* Medium font weight */
    line-height: 1.8;
    /* Line height for better readability */
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background for readability */
    color: #ffffff;
    /* White text color */
    padding: 20px;
    /* Padding inside the paragraph */
    border-radius: 8px;
    /* Rounded corners */
    text-align: justify;
    /* Justify text alignment */
    margin-top: 20px;
    /* Space above the paragraph */
    margin-bottom: 0;
    /* No bottom margin */
}

/* Responsive design for smaller screens */
@media (max-width: 767px) {
    .custom-heading {
        font-size: 30px;
        /* Smaller font size for mobile */
        padding: 15px;
        /* Reduce padding on mobile */
    }

    .custom-paragraph {
        font-size: 16px;
        /* Smaller font size for mobile */
        padding: 15px;
        /* Reduce padding on mobile */
    }
}