    .terms-hero {
        text-align: center;
        padding: 60px 0 40px;
    }

    .terms-hero h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #050b20;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .terms-hero p {
        font-size: 18px;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

    .stats-bar {
        background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary) 100%);
        border-radius: 15px;
        padding: 30px;
        color: white;
        box-shadow: 0 10px 30px rgba(64, 95, 242, 0.2);
    }

    .stat-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .stat-number {
        font-size: 36px;
        font-weight: 700;
        display: block;
    }

    .stat-label {
        font-size: 14px;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .countries-grid {
        display: flex;
        gap: 20px;
        margin-bottom: 50px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 15px;
        scroll-behavior: smooth;
    }

    .countries-grid::-webkit-scrollbar {
        height: 8px;
    }

    .countries-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .countries-grid::-webkit-scrollbar-thumb {
        background: var(--color-secondary);
        border-radius: 10px;
    }

    .countries-grid::-webkit-scrollbar-thumb:hover {
        background: #3a0061;
    }

    .country-card {
        background: white;
        border: 2px solid #e8ecef;
        border-radius: 12px;
        padding: 10px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        min-width: 120px;
        flex-shrink: 0;
    }

    .country-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: var(--color-secondary);
    }

    .country-card.active {
        background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary) 100%);
        border-color: var(--color-secondary);
        color: white;
    }

    .country-flag {
        font-size: 48px;
        margin-bottom: 0px;
    }

    .country-flag .fi {
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .country-name {
        font-size: 18px!important;
        font-weight: 600;
        margin-bottom: 8px;
        color: inherit;
    }

    .country-card.active .country-name {
        color: white;
    }

    .country-terms-count {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 14px;
        color: #666;
    }

    .country-card.active .country-terms-count {
        color: rgba(255, 255, 255, 0.9);
    }

    .country-terms-count i {
        font-size: 12px;
    }

    .terms-display {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .terms-display.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .terms-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 3px solid var(--color-secondary);
    }

    .terms-header .fi {
        font-size: 48px;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .terms-header h2 {
        font-size: 32px;
        font-weight: 700;
        margin: 0;
        color: #050b20;
    }

    .terms-header .count {
        font-size: 18px;
        color: #666;
        font-weight: 400;
    }

    .terms-card {
        background: white;
        border: 1px solid #e8ecef;
        border-radius: 12px;
        padding: 30px;
        margin-bottom: 25px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .terms-card:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .terms-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f2f5;
    }

    .terms-title {
        font-size: 24px;
        font-weight: 600;
        color: #050b20;
        margin: 0;
    }

    .terms-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 6px 12px;
        background: #e8f5e9;
        color: #2e7d32;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .terms-content {
        color: #4f5665;
        line-height: 1.8;
        font-size: 15px;
    }

    .terms-content h1,
    .terms-content h2,
    .terms-content h3,
    .terms-content h4 {
        color: #050b20;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .terms-content ul,
    .terms-content ol {
        margin-left: 20px;
        margin-bottom: 15px;
    }

    .terms-content li {
        margin-bottom: 8px;
    }

    .terms-content p {
        margin-bottom: 15px;
    }

    .no-terms {
        text-align: center;
        padding: 80px 20px;
    }

    .no-terms i {
        font-size: 64px;
        color: #ddd;
        margin-bottom: 20px;
    }

    .no-terms h3 {
        font-size: 24px;
        color: #050b20;
        margin-bottom: 10px;
    }

    .no-terms p {
        color: #666;
    }

    .view-all-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: var(--color-secondary);
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .view-all-btn:hover {
        background: #3451d1;
        transform: translateX(5px);
        color: white;
    }

    @media (max-width: 768px) {
        .countries-grid {
            gap: 15px;
        }

        .country-card {
            padding: 15px;
            min-width: 110px;
        }

        .terms-hero h1 {
            font-size: 32px;
        }

        .terms-header h2 {
            font-size: 24px;
        }

        .terms-card {
            padding: 20px;
        }

        .terms-title {
            font-size: 20px;
        }
    }
