.about-us-page {
    padding: 60px 0;
}


.about-section {
    padding: 50px 0;
    scroll-margin-top: 100px;
}


/* .about-section:nth-child(even) {
    background-color: #f7f9fa;
} */

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Area Centered Signature */
.section-header-centered {
    margin-bottom: 20px !important;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vertical-divider {
    width: 2px;
    height: 75px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.section-main-title {
    font-size: 52px;
    color: #1a3353;
    font-family: 'Times New Roman', Times, serif;
    /* Using standard serif for elegance */
    font-weight: 500;
    margin: 0;
    line-height: 1.1;
}

/* Body Area */
.section-body {
    font-size: 18px;
    line-height: 1.8;
    /* color: #5a6d81; */
    text-align: center;
    /* Centered content */
    max-width: 1000px;
    margin: 0 auto;
}

.section-body p {
    margin-bottom: 25px;
    margin-top: 0;
}

.section-logo-wrapper {
    margin: 40px auto;
    max-width: 250px;
}

.section-logo-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.section-logo-caption {
    font-size: 16px;
    color: #1a3353;
    font-weight: 500;
    margin-top: 15px;
}

.section-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    /* Center buttons */
}

.pdf-download-btn,
.section-cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.pdf-download-btn:hover,
.section-cta-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.pdf-download-btn .icon {
    margin-right: 10px;
}



/* Responsive Custom Hero */
@media (max-width: 991px) {
    .about-custom-hero {
        height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-main-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .about-custom-hero {
        height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .section-main-title {
        font-size: 32px;
    }

    .vertical-divider {
        height: 40px;
    }
}