/* Terms Hero Section */
    .terms-hero {
        padding: 10rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .terms-hero h1 {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .terms-hero span.highlight {
        color: #17ef97;
    }

    .terms-hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 2rem;
        color: #f0f0f0;
    }

    /* Terms Content Section */
    .terms-content {
        padding: 2rem 2rem 4rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-card {
        background: linear-gradient(145deg, #111 0%, #0a0a0a 100%);
        border-radius: 16px;
        padding: 2.5rem;
        margin-bottom: 2rem;
        border: 1px solid #222;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .terms-card:hover {
        box-shadow: 0 10px 20px rgba(23, 239, 151, 0.05);
        border-color: #333;
    }

    .terms-section {
        margin-bottom: 2rem;
    }

    .terms-section:last-child {
        margin-bottom: 0;
    }

    .terms-section h2 {
        color: #17ef97;
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        position: relative;
        padding-bottom: 0.8rem;
    }

    .terms-section h2::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background: #17ef97;
        border-radius: 2px;
    }

    .terms-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
        color: #fff;
    }

    .terms-section p, .terms-section ul, .terms-section ol {
        margin-bottom: 1rem;
        color: #e0e0e0;
    }

    .terms-section ul, .terms-section ol {
        padding-left: 2rem;
    }

    .terms-section li {
        margin-bottom: 0.5rem;
    }

    .terms-section a {
        color: #17ef97;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .terms-section a:hover {
        opacity: 0.8;
    }

    .terms-nav {
        background: #111;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        position: sticky;
        top: 100px;
        border: 1px solid #222;
    }

    .terms-nav h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        color: #17ef97;
    }

    .terms-nav ul {
        list-style: none;
        padding: 0;
    }

    .terms-nav li {
        margin-bottom: 0.8rem;
    }

    .terms-nav a {
        color: #e0e0e0;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: block;
    }

    .terms-nav a:hover {
        color: #17ef97;
        padding-left: 5px;
    }

    .terms-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1rem;
        margin-top: 2rem;
        border-top: 1px solid #333;
        font-size: 0.9rem;
        color: #999;
    }

    .terms-date {
        font-style: italic;
    }

    .terms-print a {
        color: #17ef97;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .terms-columns {
        display: flex;
        gap: 2rem;
    }

    .terms-sidebar {
        width: 280px;
        flex-shrink: 0;
    }

    .terms-main {
        flex: 1;
    }

    .effective-date {
        display: inline-block;
        background: rgba(23, 239, 151, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 5px;
        margin-top: 0.5rem;
        color: #17ef97;
        font-weight: 500;
    }

    .highlight-box {
        background: rgba(23, 239, 151, 0.05);
        border-left: 3px solid #17ef97;
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 0 8px 8px 0;
    }

    .highlight-box p {
        margin-bottom: 0;
    }

    .cta-container {
        display: flex;
        justify-content: center;
        margin: 3rem 0 1rem;
    }

    .cta-btn {
        display: inline-block;
        padding: 0.9rem 2.2rem;
        background: #17ef97;
        color: #000;
        text-decoration: none;
        border-radius: 25px;
        transition: transform 0.3s ease;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .cta-btn:hover {
        transform: scale(1.05);
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
        .terms-columns {
            flex-direction: column;
        }

        .terms-sidebar {
            width: 100%;
        }

        .terms-nav {
            position: static;
            margin-bottom: 2rem;
        }
    }

    @media (max-width: 768px) {
        .terms-meta {
            flex-direction: column;
            gap: 1rem;
            align-items: flex-start;
        }  
    }