.price-list-page {
    padding: 60px 0;
    background: #fff;
    min-height: 60vh;
}

.price-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.coming-soon {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    margin-bottom: 40px;
    text-align: center;
}

.coming-soon-icon {
    font-size: 64px;
    color: #d32f2f;
    margin-bottom: 20px;
}

.coming-soon h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.coming-soon p {
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-redirect {
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e5e7eb;
    margin-bottom: 40px;
}

.catalog-redirect h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.catalog-redirect p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-link {
    display: inline-block;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.catalog-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.price-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 15px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

.main-content {
    flex: 1 0 auto; 
}

.footer {
    flex-shrink: 0;
}

.price-list-page {
    padding: 60px 0;
    background: #fff;
    flex: 1; 
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .coming-soon {
        padding: 40px 20px;
    }
    
    .coming-soon-icon {
        font-size: 48px;
    }
    
    .coming-soon h2 {
        font-size: 24px;
    }
    
    .coming-soon p {
        font-size: 16px;
    }
    
    .price-benefits {
        grid-template-columns: 1fr;
    }
}