/* About Us Page Styles */

.about-page {
    background-color: var(--bg-light);
}

/* Hero Section */
.about-hero {
    background: linear-gradient(180deg, #8ad1fa 0%, #ffffff 47.5%, #ffffff 100%);
    padding: 160px 64px 80px;
    display: flex;
    justify-content: center;
}

.about-hero-content {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-hero-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 80px;
    color: var(--text-dark);
    font-variation-settings: 'opsz' 14, 'wdth' 100;
}

.about-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 32px;
    color: var(--text-subdued);
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Image Section */
.about-hero-image {
    background: #ffffff;
    padding: 0 64px 80px;
    display: flex;
    justify-content: center;
}

.about-hero-image-container {
    max-width: 1200px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.about-hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Timeline Section */
.about-timeline {
    background: var(--bg-light);
    padding: 80px 64px;
}

.about-timeline-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.about-timeline-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 56px;
    line-height: 64px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 64px;
}

.timeline-container {
    position: relative;
    padding-left: 120px;
}

.timeline-line {
    position: absolute;
    left: 100px;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, #a8d8f0 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -120px;
    width: 80px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.timeline-content {
    padding-left: 24px;
    flex: 1;
}

.timeline-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .about-hero {
        padding: 160px 40px 80px;
    }

    .about-hero-image,
    .about-timeline {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 20px 60px;
    }

    .about-hero-title {
        font-size: 40px;
        line-height: 44px;
    }

    .about-hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .about-hero-image {
        padding: 0 20px 60px;
    }

    .about-timeline {
        padding: 60px 20px;
    }

    .about-timeline-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 48px;
    }

    .timeline-container {
        padding-left: 80px;
    }

    .timeline-line {
        left: 60px;
    }

    .timeline-year {
        left: -80px;
        width: 50px;
        font-size: 18px;
    }

    .timeline-dot {
        left: -24px;
    }

    .timeline-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .timeline-item {
        margin-bottom: 36px;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        padding-left: 60px;
    }

    .timeline-line {
        left: 40px;
    }

    .timeline-year {
        left: -60px;
        width: 40px;
        font-size: 16px;
    }

    .timeline-dot {
        left: -24px;
        width: 12px;
        height: 12px;
        border-width: 3px;
    }

    .timeline-content {
        padding-left: 16px;
    }

    .timeline-content p {
        font-size: 14px;
        line-height: 22px;
    }
}
