﻿.header-banner-section {
    background-color: #DBF5FD;
    position: relative;
    padding-top: 10rem;
}

    .header-banner-section .page-title {
        color: #0056b3;
        font-size: 1.875rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 4rem;
    }


    .header-banner-section .content-card {
        width: 100%;
        height: 100%;
        background-image: url('../images/why-choose-us-bg.png');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5rem 2rem;
    }

        .header-banner-section .content-card .content-card-wrapper {
            max-width: 800px;
            background-color: rgba(255, 255, 255, 0.811);
            padding: 3rem 4rem;
            border-radius: 0.75rem;
            position: relative;
        }


.content-card .description-paragraph {
    font-size: 0.9rem;
    color: #202329;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.content-card .cta-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.cta-wrapper .contact-button {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 0.625rem 2rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

    .cta-wrapper .contact-button:hover {
        background-color: #0056b3;
    }

.certifications-section {
    padding: 5rem 1rem 6rem 1rem;
    margin-top: 3rem;
    text-align: center;
}

    .certifications-section .section-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 3rem;
        color: #0056b3;
    }

    .certifications-section .button-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }


.button-grid .cert-button {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0056b3;
    border-radius: 0.5rem;
    color: #0056b3;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

    .button-grid .cert-button:hover {
        background-color: #0056b3;
        color: white;
    }



@media (max-width: 550px) {
    .header-banner-section .content-card {
        padding: 3rem 2rem;
    }

        .header-banner-section .content-card .content-card-wrapper {
            padding: 2rem 2rem;
        }
}



@media (max-width: 470px) {
    .header-banner-section .content-card {
        padding: 1rem 1rem;
    }
}
