/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #dbeafe 0%, #d1fae5 100%);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--foreground);
}

.page-hero .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

/* Content sections */
.content-section {
    margin: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--foreground);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

/* Tariff Table */
.tariff-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.tariff-table th,
.tariff-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.tariff-table th {
    background: var(--muted);
    font-weight: 600;
    color: var(--foreground);
}
.tariff-table tr:last-child td {
    border-bottom: none;
}
.tariff-table tr:hover {
    background: rgba(59, 130, 246, 0.05);
}
.price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

/* Calculation Box */
.calculation-box {
    background: linear-gradient(135deg, #dbeafe 0%, #d1fae5 100%);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--foreground);
}

.card p {
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .tariff-table {
        display: block;
        overflow-x: auto;
    }
}
