:root {
        --primary-dark: #1a1a2e;
        --primary-medium: #16213e;
        --primary-light: #0f3460;
        --accent: #e94560;
        --text-light: #f8f9fa;
        --text-dark: #212529;
        --gold: #ffd700;
        --silver: #c0c0c0;
    }

    .terms-title {
        color: var(--primary-dark);
        font-weight: 700;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .terms-title .highlight {
        color: var(--accent);
    }
    
    .terms-subtitle {
        color: #6c757d;
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .title-separator {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 1.5rem 0;
    }
    
    .title-separator span {
        display: inline-block;
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-light), var(--accent));
        border-radius: 3px;
    }
    
    .terms-card {
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 2.5rem;
        border: 1px solid #f0f0f0;
    }
    
    /* Table of Contents */
    .terms-toc {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 1.5rem;
        border-left: 4px solid var(--primary-light);
    }
    
    .terms-toc-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }
    
    .terms-toc-list li {
        margin-bottom: 0.75rem;
        position: relative;
        padding-left: 1.5rem;
    }
    
    .terms-toc-list li:before {
        content: "→";
        color: var(--accent);
        position: absolute;
        left: 0;
    }
    
    .terms-toc-list a {
        color: var(--primary-dark);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .terms-toc-list a:hover {
        color: var(--accent);
        text-decoration: underline;
    }
    
    /* Section Styling */
    .terms-section {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #eaeaea;
        position: relative;
    }
    
    .terms-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .terms-section-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
        font-size: 1.2rem;
    }
    
    .terms-section-title {
        color: var(--primary-dark);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }
    
    .terms-content {
        color: #4a4a4a;
        line-height: 1.7;
    }
    
    .terms-list {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-list li {
        margin-bottom: 0.75rem;
    }
    
    .terms-link {
        color: var(--primary-light);
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px dotted var(--primary-light);
    }
    
    .terms-link:hover {
        color: var(--accent);
        border-bottom-color: var(--accent);
    }
    
    .terms-highlight-box {
        background-color: #f8f9fa;
        border-left: 4px solid var(--accent);
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
        border-radius: 0 8px 8px 0;
        font-weight: 500;
    }
    
    /* Payment Methods */
    .terms-payment-methods {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .terms-payment-methods span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        background-color: #f8f9fa;
        border-radius: 8px;
        font-size: 1.2rem;
    }
    
    .terms-payment-methods span i {
        margin-right: 0.5rem;
    }
    
    /* Info Cards */
    .terms-info-card {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 1.5rem;
        height: 100%;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .terms-info-card:hover {
        background-color: #f0f0f0;
        transform: translateY(-3px);
    }
    
    .terms-info-icon {
        color: var(--primary-light);
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .terms-info-card h5 {
        color: var(--primary-dark);
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    
    .terms-info-card p {
        color: #6c757d;
        margin-bottom: 0;
    }
    
    /* Contact Box */
    .terms-contact-box {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .terms-contact-box p {
        margin-bottom: 0.5rem;
    }
    
    .terms-contact-box p:last-child {
        margin-bottom: 0;
    }
    
    /* Agreement */
    .terms-agreement {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #eaeaea;
    }
    
    .terms-agreement p {
        font-weight: 500;
        color: var(--primary-dark);
    }
    
    @media (max-width: 767.98px) {
        .terms-title {
            font-size: 2rem;
        }
        
        .terms-subtitle {
            font-size: 1.1rem;
        }
        
        .terms-card {
            padding: 1.5rem;
        }
        
        .terms-section-title {
            font-size: 1.3rem;
        }
        
        .terms-payment-methods span {
            padding: 0.5rem 1rem;
            font-size: 1rem;
        }
    }