.about-content {
    padding: 80px 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 100px;
    text-align: center;
}

.about-intro h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-intro .lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto 120px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

.timeline-year {
    text-align: right;
    padding-right: 60px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--accent-color);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: 60px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-light);
}

.timeline-item:nth-child(even) .timeline-year::after {
    right: auto;
    left: -8px;
}

.timeline-content {
    padding: 30px;
    background: var(--bg-light);
    border-left: 3px solid var(--accent-color);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 3px solid var(--accent-color);
}

.timeline-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.values-section {
    margin-bottom: 120px;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.value-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--bg-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 25px;
    display: block;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 280px;
    height: 280px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--accent-color);
    position: relative;
}

.member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-image::after {
    opacity: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.member-role {
    font-size: 14px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 350px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .about-intro h2 {
        font-size: 36px;
    }
    
    .values-section h2,
    .team-section h2 {
        font-size: 36px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        direction: ltr;
    }
    
    .timeline-year {
        text-align: left;
        padding-right: 0;
        padding-left: 0;
        position: absolute;
        left: 0;
        top: 30px;
        font-size: 36px;
    }
    
    .timeline-item:nth-child(even) .timeline-year {
        text-align: left;
        padding-left: 0;
    }
    
    .timeline-year::after {
        left: -8px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-year::after {
        left: -8px;
    }
    
    .timeline-content {
        border-left: 3px solid var(--accent-color);
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        border-right: none;
        border-left: 3px solid var(--accent-color);
    }
}

@media (max-width: 768px) {
    .about-intro h2 {
        font-size: 32px;
    }
    
    .about-intro .lead {
        font-size: 18px;
    }
    
    .values-section h2,
    .team-section h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .timeline-item {
        padding-left: 60px;
        margin-bottom: 60px;
    }
    
    .timeline-year {
        font-size: 28px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 22px;
    }
    
    .member-image {
        width: 220px;
        height: 220px;
    }
}
