/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.about-hero__content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.about-hero__content .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background-color: var(--background-color);
}

.mission__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission__text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission__text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission__image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission__image img:hover {
    transform: scale(1.02);
}

/* Values Section */
.values {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background-color: var(--background-color);
}

.achievements__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.achievement {
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.achievement__icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.achievement__number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.achievement p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: var(--background-color);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member__image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team-member__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.3s ease;
}

.team-member:hover .team-member__image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-primary);
}

.team-member p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission__content {
        grid-template-columns: 1fr;
    }

    .values__grid,
    .team__grid,
    .achievements__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-member__image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-hero__content h1 {
        font-size: 2.5rem;
    }

    .about-hero__content .subtitle {
        font-size: 1.2rem;
    }

    .values__grid,
    .team__grid,
    .achievements__grid {
        grid-template-columns: 1fr;
    }

    .mission__text h2,
    .section-title {
        font-size: 2rem;
    }

    .team-member__image {
        height: 280px;
    }

    .achievement {
        padding: 30px 20px;
    }

    .achievement__number {
        font-size: 3rem;
    }
} 