    :root {
        /* Enhanced Color Palette with Better Contrast */
        --white: #ffffff;
        --black: #000000;

        /* Brand Primary (Teal) - Enhanced for better contrast */
        --primary: #1E8A88;
        --primary-light: #2CA6A4;
        --primary-lighter: #4FC1BF;
        --primary-dark: #176E6C;

        /* Brand Secondary (Green) - Enhanced */
        --secondary: #6AAD3B;
        --secondary-light: #7BC043;
        --secondary-lighter: #9EDB6B;
        --secondary-dark: #5B9432;

        /* Accent Colors */
        --accent-navy: #1F2D3D;
        --accent-navy-light: #2A3B4F;
        --accent-navy-dark: #141E2B;

        /* Neutral Grays - Improved contrast */
        --light-gray: #F8FAFC;
        --medium-gray: #E2E8F0;
        --dark-gray: #4A5568;

        /* Text Colors - AAA compliant contrast */
        --text-primary: #1A202C;
        --text-secondary: #4A5568;
        --text-light: #718096;

        /* Gradients */
        --primary-gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
        --secondary-gradient: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
        --accent-gradient: linear-gradient(135deg, var(--accent-navy-dark) 0%, var(--accent-navy-light) 100%);
        --logo-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary) 50%, var(--accent-navy) 100%);
        --green-gradient: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-light) 100%);

        /* Glow Effects */
        --primary-glow: 0 0 25px rgba(44, 166, 164, 0.5);
        --secondary-glow: 0 0 25px rgba(123, 192, 67, 0.5);
        --accent-glow: 0 0 25px rgba(31, 45, 61, 0.5);

        /* Shadows */
        --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
        --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
        --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    /* Terms Header */
    .terms-header {
        background: var(--primary-gradient);
        color: white;
        padding: 4rem 0;
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
    }

    .terms-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        animation: float 20s infinite linear;
    }

    .terms-header-content {
        position: relative;
        z-index: 2;
    }

    .terms-header h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .terms-header .lead {
        font-size: 1.2rem;
        opacity: 0.95;
        font-weight: 300;
        margin-bottom: 1rem;
    }

    .last-updated {
        background: var(--green-gradient);
        color: var(--white);
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        display: inline-block;
    }

    @keyframes float {
        0% { transform: translateX(0) translateY(0); }
        100% { transform: translateX(-100px) translateY(-100px); }
    }

    /* Main Terms Card */
    .terms-card {
        border: none;
        border-radius: 20px;
        box-shadow: var(--shadow-heavy);
        overflow: hidden;
        margin-bottom: 3rem;
        background: var(--white);
    }

    .terms-card-header {
        background: var(--green-gradient);
        padding: 2.5rem;
        text-align: center;
        border: none;
    }

    .terms-card-header h2 {
        color: var(--white);
        font-weight: 800;
        margin: 0;
        font-size: 2rem;
    }

    .terms-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
        color: var(--white);
    }

    .terms-card-body {
        padding: 3rem;
        background: var(--light-gray);
    }

    /* Alert Styling */
    .terms-alert {
        background: rgba(30, 138, 136, 0.1);
        border: none;
        border-radius: 12px;
        border-left: 4px solid var(--primary);
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .terms-alert i {
        color: var(--primary);
        font-size: 1.2rem;
    }

    /* Terms Sections */
    .terms-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--medium-gray);
        position: relative;
        background: var(--white);
        border-radius: 12px;
        padding: 2rem;
        box-shadow: var(--shadow-light);
    }

    .terms-section:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 2rem;
    }

    .section-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

    .section-icon.primary { background: rgba(30, 138, 136, 0.15); color: var(--primary-dark); }
    .section-icon.success { background: rgba(106, 173, 59, 0.15); color: var(--secondary-dark); }
    .section-icon.warning { background: rgba(255, 193, 7, 0.15); color: #ffc107; }
    .section-icon.danger { background: rgba(220, 53, 69, 0.15); color: #dc3545; }
    .section-icon.info { background: rgba(23, 110, 108, 0.15); color: var(--primary-dark); }
    .section-icon.secondary { background: rgba(31, 45, 61, 0.15); color: var(--accent-navy); }

    .section-icon i {
        font-size: 1.5rem;
    }

    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-header:hover {
        transform: translateX(5px);
    }

    .section-title {
        color: var(--primary-dark);
        font-weight: 700;
        font-size: 1.4rem;
        margin: 0;
    }

    .section-content {
        margin-left: 75px;
    }

    .section-content ul {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    .section-content li {
        margin-bottom: 0.8rem;
        line-height: 1.6;
        color: var(--text-secondary);
        position: relative;
    }

    .section-content li:before {
        content: "•";
        color: var(--secondary);
        font-weight: bold;
        font-size: 1.2rem;
        position: absolute;
        left: -1rem;
    }

    .section-content p {
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    /* Prohibited Activities Grid */
    .activity-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .activity-card {
        background: var(--white);
        border: 1px solid var(--medium-gray);
        border-radius: 12px;
        padding: 1.5rem;
        transition: all 0.3s ease;
        border-left: 4px solid #dc3545;
    }

    .activity-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-medium);
        border-left-color: var(--secondary);
    }

    .activity-card i {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #dc3545;
    }

    .activity-card:hover i {
        color: var(--secondary);
    }

    .activity-card h5 {
        color: var(--primary-dark);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .activity-card p {
        font-size: 0.9rem;
        color: var(--text-light);
        margin: 0;
        line-height: 1.5;
    }

    /* Warning Cards */
    .warning-card {
        background: rgba(220, 53, 69, 0.05);
        border: 1px solid rgba(220, 53, 69, 0.2);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 1rem 0;
        border-left: 4px solid #dc3545;
    }

    .info-card {
        background: rgba(30, 138, 136, 0.05);
        border: 1px solid rgba(30, 138, 136, 0.2);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 1rem 0;
        border-left: 4px solid var(--primary);
    }

    .highlight-box {
        background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 1rem 0;
        border: 1px solid var(--medium-gray);
    }

    .liability-badge {
        background: var(--green-gradient);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        margin-right: 1rem;
        box-shadow: var(--shadow-light);
    }

    /* Contact Buttons */
    .contact-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .contact-btn {
        background: var(--white);
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 0.7rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .contact-btn:hover {
        background: var(--primary-gradient);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

    /* Action Buttons */
    .action-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--medium-gray);
    }

    .home-btn {
        background: var(--primary-gradient);
        color: var(--white);
        border: none;
        padding: 0.8rem 2rem;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        box-shadow: var(--shadow-light);
    }

    .home-btn:hover {
        background: var(--accent-gradient);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

    .print-btn {
        background: var(--white);
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 0.8rem 2rem;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

    .print-btn:hover {
        background: var(--primary-gradient);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .terms-header {
            padding: 3rem 0;
        }

        .terms-header h1 {
            font-size: 2.2rem;
        }

        .terms-card-body {
            padding: 2rem;
        }

        .section-header {
            flex-direction: column;
            text-align: center;
        }

        .section-icon {
            margin-right: 0;
            margin-bottom: 1rem;
        }

        .section-content {
            margin-left: 0;
            text-align: left;
        }

        .terms-card-header {
            padding: 2rem 1.5rem;
        }

        .terms-card-header h2 {
            font-size: 1.7rem;
        }

        .activity-grid {
            grid-template-columns: 1fr;
        }

        .action-buttons {
            flex-direction: column;
            align-items: center;
        }

        .contact-buttons {
            flex-direction: column;
        }
    }

    @media (max-width: 576px) {
        .terms-header {
            padding: 2.5rem 0;
        }

        .terms-header h1 {
            font-size: 1.8rem;
        }

        .terms-card-body {
            padding: 1.5rem;
        }
    }

    /* Print Styles */
    @media print {
        .terms-header,
        .action-buttons,
        .contact-buttons {
            display: none !important;
        }

        .terms-card {
            box-shadow: none !important;
            border: 1px solid #ddd !important;
        }
        
        .section-content li:before {
            color: var(--text-primary) !important;
        }
    }