    .about-page {
        max-width: 1100px;
        margin: 0 auto;
    }
    .hero-section {
        background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #3b82f6 100%);
        color: white;
        padding: 4rem 2rem;
        border-radius: 16px;
        margin-bottom: 3rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.3;
    }
    .hero-section h1 {
        font-size: 2.75rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
    }
    .hero-section .tagline {
        font-size: 1.25rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
        position: relative;
    }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255,255,255,0.2);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.9rem;
        margin-top: 1.5rem;
        position: relative;
    }
    .section-title {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .section-title h2 {
        color: #1e3a5f;
        font-weight: 700;
        margin: 0;
    }
    .section-title .icon-circle {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.25rem;
    }
    .mission-card {
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
        border-radius: 16px;
        padding: 2.5rem;
        margin-bottom: 3rem;
        border: 1px solid #cbd5e1;
    }
    .mission-card p {
        color: #475569;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .mission-card p:last-child {
        margin-bottom: 0;
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .feature-card {
        background: white;
        border-radius: 12px;
        padding: 1.75rem;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        transition: all 0.3s ease;
    }
    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-color: #6366f1;
    }
    .feature-card .icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
    }
    .feature-card .icon i {
        font-size: 1.5rem;
        color: #1e3a5f;
    }
    .feature-card h4 {
        color: #1e293b;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    .feature-card p {
        color: #64748b;
        margin: 0;
        line-height: 1.6;
    }
    .team-section {
        background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
        border-radius: 16px;
        padding: 3rem;
        margin-bottom: 3rem;
        color: white;
    }
    .team-section .section-title h2 {
        color: white;
    }
    .team-section .section-title .icon-circle {
        background: rgba(255,255,255,0.2);
    }
    .team-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
        align-items: center;
    }
    .team-image {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .team-image img {
        width: 100%;
        height: auto;
        display: block;
    }
    .team-image-placeholder {
        width: 100%;
        height: 250px;
        background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .team-image-placeholder i {
        font-size: 4rem;
        opacity: 0.3;
    }
    .team-text p {
        color: rgba(255,255,255,0.9);
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .value-card {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }
    .value-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .value-card .icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 1rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }
    .value-card.integrity .icon {
        background: linear-gradient(135deg, #dcfce7, #bbf7d0);
        color: #16a34a;
    }
    .value-card.excellence .icon {
        background: linear-gradient(135deg, #fef3c7, #fde68a);
        color: #d97706;
    }
    .value-card.innovation .icon {
        background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        color: #2563eb;
    }
    .value-card.global .icon {
        background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
        color: #7c3aed;
    }
    .value-card h4 {
        color: #1e293b;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    .value-card p {
        color: #64748b;
        font-size: 0.95rem;
        margin: 0;
    }
    .stats-section {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .stat-card {
        background: white;
        color: var(--color-text-primary, #212529);
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        border: 1px solid #e2e8f0;
    }
    .stat-card h3 {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }
    .stat-card p {
        color: #64748b;
        margin: 0;
        font-weight: 500;
    }
    .cta-section {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        border-radius: 16px;
        padding: 3rem;
        text-align: center;
        color: white;
    }
    .cta-section h3 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .cta-section p {
        opacity: 0.9;
        margin-bottom: 1.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .cta-buttons .btn {
        padding: 0.75rem 2rem;
        font-weight: 600;
        border-radius: 8px;
    }
    .cta-buttons .btn-light {
        background: white;
        color: #6366f1;
    }
    .cta-buttons .btn-outline-light {
        border: 2px solid rgba(255,255,255,0.5);
    }
    .cta-buttons .btn-outline-light:hover {
        background: rgba(255,255,255,0.1);
        border-color: white;
    }
    /* Dark mode */
    [data-bs-theme="dark"] .mission-card {
        background: linear-gradient(135deg, #1e293b, #334155);
        border-color: #475569;
    }
    [data-bs-theme="dark"] .mission-card p {
        color: #94a3b8;
    }
    [data-bs-theme="dark"] .feature-card {
        background: #1e293b;
        border-color: #334155;
    }
    [data-bs-theme="dark"] .feature-card h4 {
        color: #e2e8f0;
    }
    [data-bs-theme="dark"] .feature-card p {
        color: #94a3b8;
    }
    [data-bs-theme="dark"] .feature-card .icon {
        background: linear-gradient(135deg, #1e3a5f, #1e40af);
    }
    [data-bs-theme="dark"] .feature-card .icon i {
        color: #93c5fd;
    }
    [data-bs-theme="dark"] .section-title h2 {
        color: #e2e8f0;
    }
    [data-bs-theme="dark"] .value-card {
        background: #1e293b;
        border-color: #334155;
    }
    [data-bs-theme="dark"] .value-card h4 {
        color: #e2e8f0;
    }
    [data-bs-theme="dark"] .value-card p {
        color: #94a3b8;
    }
    [data-bs-theme="dark"] .stat-card {
        background: #1e293b;
        border-color: #334155;
    }
    [data-bs-theme="dark"] .stat-card p {
        color: #94a3b8;
    }
    [data-bs-theme="dark"] .team-section {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }
    @media (max-width: 992px) {
        .team-content {
            grid-template-columns: 1fr;
        }
        .stats-section {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 576px) {
        .hero-section {
            padding: 3rem 1.5rem;
        }
        .hero-section h1 {
            font-size: 2rem;
        }
        .stats-section {
            grid-template-columns: 1fr;
        }
    }