:root {
    --navy-blue: #0a192f;
    --warning-yellow: #ffc107;
    --custom-red: #dc3545;
    --soft-white: #f8f9fa;
}

/* Tables */
.table-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.table thead {
    background-color: var(--navy-blue);
    color: white;
}

.table-hover tbody tr:hover {
    background-color: rgba(255, 193, 7, 0.05);
}

.section-title {
    border-left: 5px solid var(--warning-yellow);
    padding-left: 15px;
    margin-bottom: 25px;
    font-weight: 700;
}

.badge-promo {
    background-color: var(--custom-red);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Info Boxes */
.info-note {
    background-color: #fff9e6;
    border-left: 4px solid var(--warning-yellow);
    padding: 15px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
}

.footer {
    background: var(--navy-blue);
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.8rem;
    }
    .hero-section { padding: 40px 0; }
    .discount-card { width: 80px; height: 80px; }
    .discount-val { font-size: 1rem; }
}