        body {
            font-family: Helvetica, Arial, sans-serif;
        }
        
        /* Header Section */
        .terms-header {
            background: linear-gradient(135deg, #bf1f2f 0%, #d92c3e 100%);
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .terms-header::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: white;
            transform: skewY(-3deg);
            z-index: 1;
        }
        
        /* Content Section */
        .terms-content {
            padding: 100px 0;
            background-color: white;
            position: relative;
            z-index: 2;
        }
        
        /* Terms Sections */
        .terms-section {
            margin-bottom: 50px;
            position: relative;
        }
        
        .terms-section h3 {
            color: #bf1f2f;
            margin-bottom: 20px;
            padding-bottom: 10px;
            position: relative;
        }
        
        .terms-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #f5901d;
        }
        
        /* Highlight Box */
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid #bf1f2f;
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
            overflow: hidden;
        }
        
        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #bf1f2f;
        }
        
        .highlight-box h5 {
            color: #bf1f2f;
            margin-bottom: 15px;
        }
        
        .highlight-box h5 i {
            margin-right: 10px;
        }
        
        /* Lists */
        .terms-section ul, 
        .terms-section ol {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .terms-section ul li, 
        .terms-section ol li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        /* Last Updated */
        .last-updated {
            font-style: italic;
            color: #6c757d;
            border-top: 1px solid #dee2e6;
            padding-top: 15px;
            margin-top: 30px;
        }
        
        /* Buttons */
        .btn-primary {
            background-color: #bf1f2f;
            border-color: #bf1f2f;
        }
        
        .btn-primary:hover {
            background-color: #a11a27;
            border-color: #a11a27;
        }
        
        .btn-outline-primary {
            color: #bf1f2f;
            border-color: #bf1f2f;
        }
        
        .btn-outline-primary:hover {
            background-color: #bf1f2f;
            border-color: #bf1f2f;
            color: white;
        }

 .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #bf1f2f;
        }
        .navbar {
            padding-top: 15px;
            padding-bottom: 15px;
        }