:root {
            --primary-color: #002039;
            --secondary-color: #04db94;
            --text-color: #4a5568;
            --light-color: #f8fafc;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #ffffff;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .terms-header {
            background: linear-gradient(135deg, var(--primary-color), #00305a);
            color: white;
            padding: 100px 0 80px;
        }
        
        .terms-header h1 {
            color: white;
            font-weight: 800;
        }
        
        .terms-header p {
            opacity: 0.9;
        }
        
        .terms-content {
            padding: 80px 0;
        }
        
        .section-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        
        .highlight-box {
            background-color: rgba(4, 219, 148, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        
        .contact-terms {
            background-color: var(--light-color);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
        }
        
        ol.terms-list {
            counter-reset: item;
            padding-left: 0;
        }
        
        ol.terms-list > li {
            display: block;
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        ol.terms-list > li:before {
            content: counters(item, ".") " ";
            counter-increment: item;
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        @media (max-width: 767.98px) {
            .terms-header {
                padding: 80px 0 60px;
            }
            
            .terms-content {
                padding: 50px 0;
            }
            
            .section-card {
                padding: 30px;
            }
        }