   :root {
            --primary-dark: #101D22;
            --primary-light: #CBA36B;
            --accent-gold: #CBA36B;
            --dark-bg: #0A1418;
            --light-bg: #1A2B33;
            --text-light: #F5F5F5;
            --text-muted: #CCCCCC;
            --border-color: #2A3D47;
            --section-bg: #142027;
            --highlight-bg: rgba(203, 163, 107, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            /* background-color: var(--dark-bg); */
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            color: var(--primary-light);
            font-size: 2.2rem;
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            color: var(--primary-light);
            letter-spacing: 1px;
        }
        
        .logo-text p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .header-actions {
            display: flex;
            gap: 20px;
        }
        
        .print-btn, .download-btn {
            background-color: var(--light-bg);
            color: var(--text-light);
            border: 1px solid var(--border-color);
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .print-btn:hover, .download-btn:hover {
            background-color: var(--primary-light);
            color: var(--primary-dark);
        }
        
        /* Main Content */
        .hero {
            background: linear-gradient(to right, var(--dark-bg), var(--light-bg));
            padding: 3rem 0;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }

       
        
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-light);
        }
        
        .hero p {
            max-width: 800px;
            margin: 0 auto;
            color: var(--text-muted);
            font-size: 1.1rem;
        }
        
        .last-updated {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--primary-light);
        }
        
        /* T&C Content */
        .toc-sidebar {
            background-color: var(--section-bg);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 4px solid var(--primary-light);
        }
        
        .toc-sidebar h3 {
            color: var(--primary-light);
            margin-bottom: 1rem;
        }
        
        .toc-list {
            list-style-type: none;
        }
        
        .toc-list li {
            margin-bottom: 0.7rem;
            padding-left: 1rem;
            position: relative;
        }
        
        .toc-list li:before {
            content: "•";
            color: var(--primary-light);
            position: absolute;
            left: 0;
        }
        
        .toc-list a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .toc-list a:hover {
            color: var(--primary-light);
        }
        
        .terms-content {
            background-color: var(--section-bg);
            border-radius: 8px;
            padding: 2.5rem;
            margin: 3rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .term-section {
            margin-bottom: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .term-section:last-child {
            border-bottom: none;
        }
        
        .term-number {
            display: inline-block;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            font-weight: bold;
            margin-right: 15px;
        }
        
        .term-title {
            display: inline-block;
            font-size: 1.4rem;
            color: var(--primary-light);
            margin-bottom: 1rem;
        }
        
        .term-details {
            margin-left: 51px;
        }
        
        .term-details p {
            margin-bottom: 1rem;
            color: var(--text-muted);
        }
        
        .highlight-box {
            background-color: var(--highlight-bg);
            border-left: 3px solid var(--primary-light);
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        
        .highlight-box p {
            margin-bottom: 0.5rem;
        }
        
        .sub-section {
            margin: 1.5rem 0;
        }
        
        .sub-title {
            color: var(--primary-light);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        
        .note {
            color: var(--primary-light);
            font-style: italic;
            margin-top: 1rem;
        }
        
        /* Cancellation Table */
        .cancellation-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        .cancellation-table th, .cancellation-table td {
            padding: 12px 15px;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        
        .cancellation-table th {
            background-color: var(--primary-dark);
            color: var(--primary-light);
        }
        
        .cancellation-table tr:nth-child(even) {
            background-color: rgba(16, 29, 34, 0.5);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            padding: 3rem 0;
            border-top: 2px solid var(--primary-light);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: var(--primary-light);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .contact-info p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-info i {
            color: var(--primary-light);
            width: 20px;
        }
        
        .why-book-list {
            list-style-type: none;
        }
        
        .why-book-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .why-book-list li:before {
            content: "✓";
            color: var(--primary-light);
            position: absolute;
            left: 0;
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .tagline {
            text-align: center;
            font-size: 1.5rem;
            color: var(--primary-light);
            margin: 2rem 0;
            font-style: italic;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .logo-area {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .header-actions {
                width: 100%;
                justify-content: space-between;
            }
            
            .print-btn, .download-btn {
                flex: 1;
                justify-content: center;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .term-details {
                margin-left: 0;
            }
            
            .cancellation-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 480px) {
            .terms-content {
                padding: 1.5rem;
            }
            
            .term-number {
                display: block;
                margin-bottom: 10px;
            }
            
            .term-title {
                display: block;
            }
        }
        .main-footer-one{
            padding-top: 0px !important;
        }

        .main-footer__bottom{
            margin-top: 0;
        }