.about-page {
    padding-top: 80px;
    min-height: 100vh;
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://placehold.co/1920x600/1a1a1a/e74c3c?text=Чеширский+KOD');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-section {
    margin: 4rem 0;
}

.about-section h2 {
    color: var(--light-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-section p {
    color: var(--light-color);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(206, 16, 52, 0.3);
}

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

.value-card h3 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--light-color);
    opacity: 0.9;
    font-size: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--gray-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(206, 16, 52, 0.3);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-info {
    padding: 1.5rem;
    text-align: center;
}

.team-member-info h3 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.team-member-info .position {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-member-info p {
    color: var(--light-color);
    opacity: 0.9;
    font-size: 0.9rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(206, 16, 52, 0.3);
}

.achievement .number {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.achievement .label {
    color: var(--light-color);
    opacity: 0.9;
    font-size: 1.1rem;
}

.map-section {
    width: 100%;
    margin: 4rem 0;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 0;
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .values-grid,
    .team-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .team-member img {
        height: 250px;
    }
} 