    :root {
        --zorpido-red: #dc3545;
        --zorpido-red-dark: #c82333;
        --zorpido-yellow: #ffc107;
        --zorpido-yellow-light: #fff3cd;
        --zorpido-white: #ffffff;
        --text-dark: #2c3e50;
        --text-muted: #6c757d;
        --border-light: #e9ecef;
    }

    .terms-hero {
        background: linear-gradient(180deg, #FFFFFF 0%, #FEF3C7 30%, #FFFFFF 70%, #FEF3C7 100%);
        padding: 4rem 0 3rem;
        margin-bottom: 3rem;
        position: relative;
        overflow: hidden;
    }

    .terms-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
        opacity: 0.3;
    }

    .terms-hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: var(--zorpido-white);
    }

    .terms-hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--zorpido-red);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .terms-hero .effective-date {
        font-size: 1rem;
        opacity: 0.9;
        background:var(--zorpido-red-dark);
        color: var(--zorpido-white);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        display: inline-block;
        margin-top: 1rem;
        backdrop-filter: blur(10px);
    }

    .terms-content {
        background: var(--zorpido-white);
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        margin-bottom: 2rem;
    }

    .terms-content h2 {
        color: var(--zorpido-red);
        font-size: 1.75rem;
        font-weight: 700;
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 3px solid var(--zorpido-yellow);
        display: inline-block;
    }

    .terms-content h2:first-child {
        margin-top: 0;
    }

    .terms-content h3 {
        color: var(--text-dark);
        font-size: 1.35rem;
        font-weight: 600;
        margin-top: 2rem;
        margin-bottom: 1rem;
        padding-left: 1rem;
        border-left: 4px solid var(--zorpido-yellow);
    }

    .terms-content h4 {
        color: var(--zorpido-red);
        font-size: 1.1rem;
        font-weight: 600;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .terms-content p {
        color: var(--text-dark);
        line-height: 1.8;
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .terms-content ul {
        margin: 1.5rem 0;
        padding-left: 0;
        list-style: none;
    }

    .terms-content ul li {
        position: relative;
        padding: 1rem 1.5rem;
        margin-bottom: 0.75rem;
        background: linear-gradient(to right, var(--zorpido-yellow-light), var(--zorpido-white));
        border-left: 4px solid var(--zorpido-yellow);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .terms-content ul li:hover {
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
    }

    .terms-content ul li strong {
        color: var(--zorpido-red);
        font-weight: 600;
    }

    .intro-box {
        background: linear-gradient(135deg, var(--zorpido-yellow-light) 0%, var(--zorpido-white) 100%);
        border: 2px solid var(--zorpido-yellow);
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .intro-box p {
        margin-bottom: 0.75rem;
    }

    .intro-box p:last-child {
        margin-bottom: 0;
    }

    .intro-box a {
        color: var(--zorpido-red);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 2px solid var(--zorpido-yellow);
        transition: all 0.3s ease;
    }

    .intro-box a:hover {
        color: var(--zorpido-red-dark);
        border-bottom-color: var(--zorpido-red);
    }

    .alert-success {
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
        border: 2px solid #28a745;
        border-radius: 15px;
        padding: 1.5rem;
        margin-top: 3rem;
        box-shadow: 0 5px 20px rgba(40, 167, 69, 0.15);
    }

    .alert-success p {
        color: #155724;
        font-size: 1.05rem;
        margin: 0;
    }

    .home-btn {
        background: var(--zorpido-white);
        border: 2px solid var(--zorpido-red);
        color: var(--zorpido-red);
        font-weight: 600;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        margin-top: 2rem;
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
    }

    .home-btn:hover {
        background: var(--zorpido-red);
        color: var(--zorpido-white);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(220, 53, 69, 0.3);
    }

    .section-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--zorpido-red), var(--zorpido-red-dark));
        color: var(--zorpido-white);
        border-radius: 10px;
        margin-right: 0.75rem;
        font-weight: 700;
        box-shadow: 0 4px 10px rgba(220, 53, 69, 0.2);
    }

    .contact-box {
        background: linear-gradient(135deg, var(--zorpido-red) 0%, var(--zorpido-red-dark) 100%);
        color: var(--zorpido-white);
        border-radius: 15px;
        padding: 2rem;
        margin-top: 2rem;
        text-align: center;
    }

    .contact-box h3 {
        color: var(--zorpido-white);
        border: none;
        padding: 0;
        margin-bottom: 1rem;
    }

    .contact-box p {
        color: var(--zorpido-white);
        margin-bottom: 0.5rem;
        font-size: 1.05rem;
    }

    .contact-box a {
        color: var(--zorpido-yellow);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 2px solid var(--zorpido-yellow);
        transition: all 0.3s ease;
    }

    .contact-box a:hover {
        opacity: 0.8;
    }

    @media (max-width: 768px) {
        .terms-hero h1 {
            font-size: 1.75rem;
        }

        .terms-content {
            padding: 1.5rem;
            border-radius: 15px;
        }

        .terms-content h2 {
            font-size: 1.5rem;
        }

        .terms-content h3 {
            font-size: 1.2rem;
        }

        .section-icon {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }
    }

    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--zorpido-red);
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--zorpido-red-dark);
    }
