.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 {
    margin-bottom: 60px;
}

.about-section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-section-content h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.about-section-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1a1a2e;
}

.about-section-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

/* Преимущества */
.about-advantages {
    margin-bottom: 60px;
}

.about-advantages h2 {
    text-align: center;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.about-advantages h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1a1a2e;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: transparent;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Как мы работаем */
.about-workflow {
    margin-bottom: 60px;
    background: white;
    padding: 50px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.about-workflow h2 {
    text-align: center;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.about-workflow h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1a1a2e;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    opacity: 0.3;
    margin-bottom: 15px;
    font-family: monospace;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Адаптивность */
@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-content h2,
    .about-advantages h2,
    .about-workflow h2 {
        font-size: 28px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-workflow {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 28px;
    }

    .advantage-card {
        padding: 20px;
    }

    .step-number {
        font-size: 28px;
    }
}