.page-about {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--bg-color);
    color: var(--text-main-color);
    font-family: Arial, sans-serif;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-about__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-about__hero-content {
    padding: 0 20px;
    max-width: 900px;
    z-index: 1;
}

.page-about__hero-title {
    font-size: clamp(2em, 3.5vw, 3em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-about__hero-description {
    font-size: clamp(1em, 1.2vw, 1.15em);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main-color);
}

.page-about__hero-cta {
    display: inline-block;
    background: var(--button-bg);
    color: #FFF;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(242, 193, 78, 0.4);
}

.page-about__overview-section, 
.page-about__mission-vision-section, 
.page-about__security-section, 
.page-about__team-section, 
.page-about__cta-section {
    padding: 60px 0;
    margin-bottom: 20px;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.page-about__section-title {
    font-size: clamp(1.8em, 2.5vw, 2.5em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.page-about__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.page-about__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-about__image-left, .page-about__image-right {
    flex: 1;
    min-width: 200px;
    max-width: 50%;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
}

.page-about__text-content {
    flex: 1;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-main-color);
}

.page-about__text-content p {
    margin-bottom: 15px;
}

.page-about__text-content strong {
    color: var(--primary-color);
}

.page-about__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: var(--card-bg-color);
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main-color);
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-about__cta-btn {
    display: inline-block;
    background: var(--button-bg);
    color: #FFF;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(242, 193, 78, 0.4);
}

.page-about__cta-btn--secondary {
    background: none;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.page-about__cta-btn--secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-color);
    box-shadow: 0 8px 16px rgba(255, 211, 107, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-about__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-about__image-left, .page-about__image-right {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-about__container {
        padding: 15px;
    }

    .page-about__hero-title {
        font-size: 2.2em;
    }

    .page-about__hero-description {
        font-size: 1em;
    }

    .page-about__section-title {
        font-size: 1.8em;
    }

    .page-about__hero-cta, .page-about__cta-btn {
        padding: 10px 25px;
        font-size: 1em;
    }

    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-about__cta-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Enforce min-size for content images on mobile */
    .page-about__overview-section img,
    .page-about__mission-vision-section img,
    .page-about__security-section img,
    .page-about__team-section img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }

    .page-about__section-title {
        font-size: 1.5em;
    }

    .page-about__overview-section, 
    .page-about__mission-vision-section, 
.page-about__security-section, 
.page-about__team-section, 
.page-about__cta-section {
        padding: 40px 0;
    }
}

/* Color variables */
:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --button-bg: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg-color: #111111;
    --bg-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}