/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #2980b9 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
    background-color: white;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.story-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.milestones {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.milestone {
    text-align: center;
}

.milestone .number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.milestone .label {
    font-size: 14px;
    color: #777;
}

/* Our Mission Section */
.our-mission {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.mission-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary);
}

.mission-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mission-item .icon {
    font-size: 24px;
    color: var(--secondary);
    margin-top: 5px;
}

.mission-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.mission-item p {
    color: #555;
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 80px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary);
}

.member-info .position {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
}

.member-info .bio {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.join-team {
    text-align: center;
    margin-top: 50px;
}

.join-team p {
    margin-bottom: 20px;
    font-size: 18px;
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card .icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.value-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
}

.cta-buttons .cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .story-content,
    .mission-content {
        flex-direction: column;
    }
    
    .story-image,
    .mission-image {
        width: 100%;
    }
    
    .mission-text {
        order: 1;
    }
    
    .mission-image {
        order: 2;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 36px;
    }
    
    .milestones {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .about-hero-content h1 {
        font-size: 30px;
    }
    
    .about-hero-content p {
        font-size: 18px;
    }
    
    .mission-text h2 {
        font-size: 28px;
    }
    
    .about-cta h2 {
        font-size: 28px;
    }
}