/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* Header */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-bottom: 3px solid #007bff20;
}

.page-header h1 {
    font-size: 42px;
    font-weight: bold;
    color: #0066c8;
}

.page-header p {
    font-size: 18px;
    margin-top: 10px;
}

.highlight-red {
    color: #d60000;
    font-weight: bold;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto;
}

/* Tariff Card */
.tariff-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px #0001;
}

.tariff-title {
    font-size: 28px;
    background: #0066c8;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.tariff-table th {
    background: #e9eef5;
    padding: 14px;
    color: #0066c8;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #d9d9d9;
}

.tariff-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.tariff-table tr:hover {
    background: #f7fbff;
}

/* Info Section */
.tariff-info p {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

.tariff-info ul {
    list-style: none;
}

.tariff-info ul li {
    padding-left: 18px;
    margin-bottom: 6px;
    position: relative;
}

.tariff-info ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
}

/* Warning Box */
.warning-box {
    background: #fff6d6;
    padding: 12px;
    border-left: 5px solid #ffb700;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 14px;
}

/* Cancellation Box */
.cancel-box {
    background: #ffe0e0;
    padding: 25px;
    border-left: 6px solid #ff3333;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.cancel-box h3 {
    color: #cc0000;
    margin-bottom: 5px;
}
