/* About Page Styles - Synchronized with Homepage & Projects */

.about-page {
    padding-top: 0;
}

/* ==================== HEADER STYLES ==================== */
.header-about {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

.header-about .logo-text {
    color: white;
}

.header-about .nav-list a {
    color: rgba(255, 255, 255, 0.85);
}

.header-about .nav-list a:hover,
.header-about .nav-list a.active {
    color: white;
}

.header-about .phone-link {
    color: white !important;
}

.header-about .phone-icon {
    color: white;
}

.header-about .mobile-menu-toggle span {
    background: white;
}

/* Header scrolled state */
.header-about.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-about.scrolled .logo-text {
    color: var(--text-dark);
}

.header-about.scrolled .logo-icon path {
    fill: url(#logoGradient);
}

.header-about.scrolled .nav-list a {
    color: var(--text-gray);
}

.header-about.scrolled .nav-list a:hover,
.header-about.scrolled .nav-list a.active {
    color: var(--primary-blue);
}

.header-about.scrolled .phone-link {
    color: var(--text-dark) !important;
}

.header-about.scrolled .phone-icon {
    color: var(--primary-blue);
}

.header-about.scrolled .mobile-menu-toggle span {
    background: var(--text-dark);
}

/* ==================== HERO SECTION ==================== */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
}

.about-hero .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.about-hero .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 95, 0.85) 50%, rgba(37, 99, 235, 0.7) 100%);
    z-index: 1;
}

.about-hero .hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.about-hero .hero-deco {
    position: absolute;
}

.about-hero .hero-deco.deco-1 {
    width: 120px;
    height: 120px;
    background: #00c8ff;
    top: 15%;
    right: 8%;
    opacity: 0.8;
}

.about-hero .hero-deco.deco-2 {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    top: 40%;
    right: 18%;
    opacity: 0.6;
}

.about-hero .hero-deco.deco-3 {
    width: 60px;
    height: 60px;
    background: #00c8ff;
    bottom: 25%;
    left: 5%;
    opacity: 0.5;
}

.about-hero .container {
    position: relative;
    z-index: 3;
}

.about-hero .hero-content {
    max-width: 900px;
}

.about-hero h1 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.1;
    color: white;
    margin: 24px 0;
}

.about-hero h1 .highlight {
    color: #00c8ff;
}

.about-hero .hero-desc {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px 50px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 900px;
    justify-content: space-around;
}

.hero-stats .stat-item {
    text-align: center;
    flex: 1;
}

.hero-stats .stat-number {
    display: block;
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00c8ff;
    line-height: 1;
}

.hero-stats .stat-label {
    display: block;
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    white-space: nowrap;
}

/* ==================== STORY SECTION ==================== */
.story-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin: 20px 0 30px;
}

.story-text {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.story-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-features .feature-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
}

.story-features .feature-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary-blue);
}

.story-features .feature span {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Story Visual */
.story-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
}

.visual-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.visual-accent {
    position: absolute;
}

.visual-accent.accent-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    top: -30px;
    right: -30px;
    z-index: -1;
}

.visual-accent.accent-2 {
    width: 80px;
    height: 80px;
    background: #00c8ff;
    bottom: -25px;
    left: -25px;
    z-index: -1;
}

/* ==================== MISSION SECTION ==================== */
.mission-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    overflow: hidden;
}

.mission-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mission-deco {
    position: absolute;
}

.mission-deco.deco-1 {
    width: 200px;
    height: 200px;
    background: rgba(0, 200, 255, 0.1);
    top: -50px;
    right: 10%;
    border-radius: 50%;
}

.mission-deco.deco-2 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -30px;
    left: 5%;
    border-radius: 50%;
}

.mission-section .container {
    position: relative;
    z-index: 2;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: #00c8ff;
}

.mission-card h3 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.mission-card p {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* ==================== SERVICES SECTION ==================== */
.about-services-section {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about-services-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(0, 200, 255, 0.03) 100%);
    border-radius: 50%;
    pointer-events: none;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
}

.services-header-left {
    max-width: 550px;
}

.services-header-left h2 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 20px 0 0;
}

.services-header-left h2 .highlight {
    color: var(--primary-green);
}

.services-header-right {
    max-width: 450px;
}

.services-intro {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.services-header-right .btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.services-header-right .btn-explore:hover {
    gap: 14px;
}

.services-header-right .btn-explore svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.services-header-right .btn-explore:hover svg {
    transform: translateX(4px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(37, 99, 235, 0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #00c8ff 100%);
    border-radius: 14px;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.service-card h3 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card > p {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.service-features li:first-child {
    border-top: none;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    overflow: hidden;
}

.team-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.team-deco {
    position: absolute;
}

.team-deco.deco-1 {
    width: 100px;
    height: 100px;
    background: #00c8ff;
    top: 10%;
    left: 5%;
    opacity: 0.3;
}

.team-deco.deco-2 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    bottom: 15%;
    right: 8%;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

.team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.team-header h2 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    color: white;
    margin: 20px 0;
}

.team-header p {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.team-role {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 14px;
    color: #00c8ff;
    display: block;
    margin-bottom: 16px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #00c8ff;
}

.team-social svg {
    width: 16px;
    height: 16px;
    color: white;
}

/* ==================== AWARDS SECTION ==================== */
.awards-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.awards-header {
    text-align: center;
    margin-bottom: 60px;
}

.awards-header h2 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-item {
    text-align: center;
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.award-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.award-year {
    display: inline-block;
    padding: 6px 16px;
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.1);
    border-radius: 100px;
    margin-bottom: 20px;
}

.award-item h3 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.award-item p {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
}

/* ==================== CTA SECTION ==================== */
.about-cta-section {
    position: relative;
    padding: 120px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-deco {
    position: absolute;
}

.cta-deco.deco-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    top: 20%;
    left: 5%;
    opacity: 0.1;
}

.cta-deco.deco-2 {
    width: 80px;
    height: 80px;
    background: #00c8ff;
    bottom: 20%;
    right: 10%;
    opacity: 0.2;
}

.cta-deco.deco-3 {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    top: 40%;
    right: 20%;
    opacity: 0.1;
}

.about-cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'VL Allround Gothic', 'Inter', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-content p {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: var(--primary-blue);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* ==================== SECTION LABELS (Sync with Homepage) ==================== */
.section-label-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-header .section-label-wrap,
.awards-header .section-label-wrap {
    justify-content: center;
}

.label-icon {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
}

.label-icon.white {
    background: white;
}

.section-label {
    font-family: 'SF Compact Text', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.section-label.white {
    color: white;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .services-header {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        gap: 30px;
        padding: 20px 30px;
        max-width: 800px;
    }
    
    .hero-stats .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .services-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-header-left h2 {
        font-size: 36px;
    }
    
    .services-header-right {
        max-width: 100%;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-visual {
        order: -1;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero .hero-deco.deco-1,
    .about-hero .hero-deco.deco-2 {
        display: none;
    }
    
    .about-hero {
        min-height: auto;
        padding: 140px 0 60px;
        display: block;
    }
    
    .about-hero .container {
        margin-bottom: 40px;
    }
    
    .about-hero .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 0 20px;
        width: auto;
        max-width: none;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 20px 24px;
    }
    
    .hero-stats .stat-number {
        font-size: 28px;
    }
    
    .hero-stats .stat-label {
        white-space: normal;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 120px 0 50px;
        display: block;
    }
    
    .about-hero .container {
        margin-bottom: 30px;
    }
    
    .about-hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .about-hero .hero-desc {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 20px;
        margin: 0 15px;
    }
    
    .hero-stats .stat-number {
        font-size: 26px;
    }
    
    .hero-stats .stat-label {
        font-size: 11px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-header-left h2 {
        font-size: 32px;
    }
    
    .services-intro {
        font-size: 16px;
    }
    
    .services-grid,
    .team-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .story-section,
    .about-services-section,
    .team-section,
    .awards-section,
    .about-cta-section {
        padding: 80px 0;
    }
    
    .mission-section {
        padding: 60px 0;
    }
    
    .visual-wrapper img {
        height: 350px;
    }
    
    .visual-accent.accent-1,
    .visual-accent.accent-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 40px;
    }
    
    .about-hero .container {
        margin-bottom: 25px;
    }
    
    .about-hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .about-hero .hero-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-stats {
        margin: 0 10px;
        padding: 16px 12px;
        gap: 12px;
    }
    
    .hero-stats .stat-item {
        padding: 8px;
    }
    
    .hero-stats .stat-number {
        font-size: 22px;
    }
    
    .hero-stats .stat-label {
        font-size: 10px;
        margin-top: 4px;
    }
    
    .story-section,
    .about-services-section,
    .team-section,
    .awards-section,
    .about-cta-section {
        padding: 60px 0;
    }
    
    .story-content h2,
    .services-header-left h2,
    .team-header h2,
    .awards-header h2,
    .cta-content h2 {
        font-size: 26px;
    }
    
    .mission-card,
    .service-card {
        padding: 30px;
    }
    
    .team-image {
        height: 220px;
    }
    
    .award-item {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
