.about-page-bg {
    background-color: #10222C;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
}

/* HERO */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 20px;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16,34,44,0.95) 0%, rgba(16,34,44,0.6) 60%, rgba(16,34,44,0.3) 100%);
}
.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.about-hero-content .title-line-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.about-hero-content .title-line {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.4);
}
.about-hero-content .eyebrow {
    color: #4FB3A0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin: 0;
}
.about-hero-content h1 {
    color: #FFFFFF;
    font-size: 42px;
    margin-bottom: 20px;
}
.about-hero-content .hero-text {
    color: #C9D9DE;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
}
.about-hero-content .hero-emphasis {
    color: #4FB3A0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 26px;
}
.about-btn {
    display: inline-block;
    background: #F4F8FA;
    color: #1B3A4B;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
}
.about-btn:hover { background: #4FB3A0; color: #FFFFFF; }

/* GENERIC SECTIONS */
.about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px;
}
.about-section-alt {
    background: #142A38;
    max-width: 100%;
    padding: 70px 20px;
}
.about-section-alt > .about-grid,
.about-section-alt > .section-header {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 70px;
}
.about-grid:last-child { margin-bottom: 0; }
.about-grid.row-reverse-none > div:first-child { order: 1; }
.about-grid.row-reverse-none > div:last-child { order: 2; }

.about-section h2, .about-section-alt h2 {
    color: #FFFFFF;
    font-size: 28px;
    margin-bottom: 10px;
}
.about-section h3, .about-section-alt h3 {
    color: #4FB3A0;
    font-size: 20px;
    margin-bottom: 10px;
}
.about-section p, .about-section-alt p {
    color: #C9D9DE;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}
.eyebrow-inline {
    color: #4FB3A0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px !important;
    font-weight: 700;
}

.about-img-wrap img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.section-header { text-align: center; margin-bottom: 50px; }
.section-header p { max-width: 700px; margin: 0 auto; }

.check-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.check-list li {
    color: #FFFFFF;
    padding-left: 26px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
}
.check-list li::before {
    content: "✓";
    color: #4FB3A0;
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* TESTIMONIAL */
.testimonial-section {
    text-align: center;
}
.stars {
    color: #4FB3A0;
    font-size: 28px;
    margin-bottom: 16px;
}
blockquote {
    color: #FFFFFF;
    font-size: 24px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 30px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}
.author-name { color: #FFFFFF; font-weight: 700; margin-bottom: 2px !important; }
.author-sub { color: #A9C2CE; font-size: 13px !important; margin-bottom: 0 !important; }

/* CLOSING CTA */
.about-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    display: flex;
    justify-content: flex-start;
}
.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16,34,44,0.6);
}
.about-cta-card {
    position: relative;
    z-index: 2;
    background: #1B3A4B;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.about-cta-card h2 { color: #FFFFFF; margin-bottom: 14px; }
.about-cta-card p { color: #C9D9DE; margin-bottom: 20px; }
.about-btn-light { background: #4FB3A0; color: #FFFFFF; }
.about-btn-light:hover { background: #F4F8FA; color: #1B3A4B; }

/* MOBILE */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-grid.row-reverse-none > div:first-child { order: 2; }
    .about-grid.row-reverse-none > div:last-child { order: 1; }
    .about-hero-content h1 { font-size: 30px; }
    blockquote { font-size: 18px; }
}