
    /* --- 1. BRAND VARIABLES --- */
    :root {
        --primary: #ff9a30;
        --primary-dark: #ea580c;
        --primary-light: #fff7ed;
        --dark: #1a1a1a;
        --gray-text: #64748b;
        --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
        --radius: 16px;
    }

    body {
        background-color: var(--gray-50);
    }

    /* --- 2. LAYOUT WRAPPERS --- */
    .terms-wrapper {
        
        max-width: 800px;
        margin: 70px auto;
        padding: 0 20px;
    }

    .terms-container {
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--card-shadow);
        overflow: hidden;
        border-top: 5px solid var(--primary);
        padding: 40px;
    }

    .terms-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .terms-header h1 {
        font-family: var(--font-serif);
        font-size: 2.2rem;
        color: var(--dark);
        margin-bottom: 10px;
    }

    .terms-header p {
        color: var(--gray-text);
        font-size: 0.9rem;
    }

    /* --- 3. TERMS LIST STYLES --- */
    .terms-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .term-item {
        display: flex;
        gap: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--gray-100);
    }

    .term-item:last-child {
        border-bottom: none;
    }

    .term-number {
        width: 40px;
        height: 40px;
        background: var(--primary-light);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        flex-shrink: 0;
        font-size: 1rem;
    }

    .term-content h3 {
        font-size: 1.1rem;
        color: var(--dark);
        margin-bottom: 5px;
        font-weight: 700;
    }

    .term-content p {
        color: var(--gray-text);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* --- 4. ACCEPTANCE BOX --- */
    .acceptance-box {
        margin-top: 40px;
        background: var(--primary-light);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
    }

    .acceptance-box h2 {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .btn-action {
        background: var(--primary);
        color: white;
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 700;
        display: inline-block;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(255, 154, 48, 0.3);
        transition: 0.3s;
    }

    .btn-action:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    /* --- 5. MOBILE APP VIEW --- */
    @media (max-width: 768px) {
        .terms-wrapper {
            margin: 0;
            padding: 0;
        }

        .terms-container {
            box-shadow: none;
            border-radius: 0;
            border-top: none;
            padding: 30px 20px;
        }

        .terms-header h1 { font-size: 1.8rem; }

        .term-item {
            gap: 15px;
        }

        .term-number {
            width: 30px;
            height: 30px;
            font-size: 0.8rem;
        }

        .term-content h3 { font-size: 1rem; }
        .term-content p { font-size: 0.85rem; }
    }
