/* Page header */
.page-header {
    background: var(--gradient-primary);
    padding: 5rem 0;
    border-radius: 0 0 40px 40px;
}

/* Value Card */
.value-card {
    background: var(--color-bg-white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 12px 28px var(--color-shadow);
    border: 1px solid var(--color-border);
    height: 100%;
    transition: all 0.3s;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 40px rgba(47, 140, 143, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(47, 140, 143, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--color-secondary);
}

/* Stat Card */
.stat-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 20px var(--color-shadow);
    border: 1px solid var(--color-border);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.stat-label {
    color: var(--color-text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-secondary);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2.45rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-secondary);
    border: 3px solid var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(47, 140, 143, 0.2);
}

.timeline-year {
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Team highlight card */
.team-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px var(--color-shadow);
    border: 1px solid var(--color-border);
    transition: all 0.2s;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-secondary);
}

/* Testimonial card */
.testimonial-card {
    background: var(--color-bg-white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 12px 28px var(--color-shadow);
    border-left: 6px solid var(--color-accent);
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-primary);
    border-radius: 40px;
    padding: 3.5rem 2.5rem;
}

.badge-accent {
    background-color: var(--color-accent);
    color: #1E3557;
    font-weight: 500;
}

/* Image placeholder */
.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--color-shadow);
}

@media (max-width: 768px) {
    .page-header {
        border-radius: 0 0 20px 20px;
        padding: 3rem 0;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -1.7rem;
    }
}