.about-page {
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

/* Hero секция */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 50px;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Основные секции */
.about-section {
    max-width: 900px;
    margin: 0 auto 50px;
}

.about-section h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1a1a2e;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-mission {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mission-list {
    margin: 20px 0 0 20px;
    padding: 0;
}

.mission-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* Ценности */
.about-values {
    margin: 60px 0;
}

.about-values h2 {
    text-align: center;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.about-values h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1a1a2e;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Адаптивность */
@media (max-width: 768px) {
    .about-hero {
        padding: 50px 20px;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-section h2,
    .about-values h2 {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-mission {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 20px;
    }

    .mission-list li {
        font-size: 14px;
    }
}