/* Container for Flex Layout */
.containerC {
    display: flex;
    justify-content: center;
    padding: 15px 20px;
    background-color: white;
    border-radius: 8px;
}

.rowC {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1400px;
    width: 100%;
}

/* Benefits section */
.benefits-sectionC {
    flex: 1 1 50%;
    /* 50% width for larger screens */
    margin-right: 20px;
    margin-top: 3%;
}

.benefits-sectionC h1 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefits-sectionC p {
    font-size: 17px;
    line-height: 1.8;
    margin-top: 40px;
}

/* Buttons grid */
.benefits-buttonsC {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two buttons per row */
    gap: 20px;
    margin-top: 50px;
}

.benefits-buttonsC button {
    background-color: #012f66cc;
    border: none;
    padding: 15px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.benefits-buttonsC button:hover {
    background-color: #2767b4cc;
}

/* Apply Section */
.apply-sectionC {
    flex: 1 1 50%;
    /* 50% width for larger screens */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.apply-sectionC img {
    max-width: 100%;
    margin-bottom: 0px;
}

.apply-buttonC {
    background-color: #004d91;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s;
    width: 40%;
    text-align: center;
}

.apply-buttonC:hover {
    background-color: #0d396ead;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rowC {
        flex-direction: column;
        /* Switch to column layout on smaller screens */
    }

    .benefits-sectionC,
    .apply-sectionC {
        flex: 1 1 100%;
        /* Make both sections full width on smaller screens */
    }

    .benefits-sectionC h1 {
        font-size: 36px;
        /* Adjust heading size for smaller screens */
    }

    .benefits-sectionC p {
        font-size: 15px;
        /* Adjust paragraph size */
    }

    .benefits-buttonsC {
        grid-template-columns: 1fr;
        /* Switch to single column layout for buttons */
    }

    .containerC {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .benefits-sectionC h1 {
        font-size: 28px;
    }

    .benefits-sectionC p {
        font-size: 14px;
    }

    .benefits-buttonsC button {
        padding: 10px;
        font-size: 0.9em;
    }

    .containerC {
        padding: 20px;
    }
}

/* <!-- ================================part 2============================== --> */
.pdcrr {
    margin-top: 3%;
}

.custom-border {
    border-left: 5px solid #004c8e;
    padding-left: 15px;
    line-height: 28px;
}

.mbcrr {
    margin-bottom: 33px;
}

.ftscrr {
    font-size: 36px;
    color: black;
}
.ml{
    margin-left: 5%;
}