/* =========================================
   СТИЛИ ДЛЯ СТРАНИЦЫ "ЦЕНЫ"
   ========================================= */

.prices-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: #1e293b;
}

.prices-hero {
    background: linear-gradient(135deg, #1a3a4a 0%, #2c5a6a 100%);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 40px;
    color: white;
    text-align: center;
}

.prices-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.prices-table {
    background: #ffffff;
    border-radius: 30px;
    padding: 24px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.prices-table table {
    width: 100%;
    border-collapse: collapse;
}

.prices-table th {
    text-align: left;
    padding: 15px;
    background: #f0f4f8;
    font-weight: 600;
    color: #1a3a4a;
}

.prices-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
}

.prices-table tr:last-child td {
    border-bottom: none;
}

.discounts {
    background: #f0f4f8;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.discounts h3 {
    font-size: 1.5rem;
    color: #1a3a4a;
    margin-bottom: 20px;
}

.discounts ul {
    list-style: none;
    padding: 0;
}

.discounts li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.discounts li::before {
    content: "🎓 ";
    color: #e67e22;
}

.price-note {
    text-align: center;
    padding: 20px;
    background: #fff8e7;
    border-radius: 20px;
    margin-top: 30px;
}

/* Адаптив для страницы цен */
@media (max-width: 768px) {
    .prices-hero h1 {
        font-size: 1.6rem;
    }
    
    .prices-hero p {
        font-size: 1rem;
    }
    
    .prices-table th,
    .prices-table td {
        padding: 8px;
        font-size: 0.85rem;
    }
}</style>
