:root {
    --bg-gradient-1: #0f0c29;
    --bg-gradient-2: #302b63;
    --bg-gradient-3: #24243e;
    --accent-1: #FF3CAC;
    --accent-2: #784BA0;
    --accent-3: #2B86C5;
    --text-primary: #ffffff;
    --text-secondary: #b8c1ec;
    --text-tertiary: #8892b0;
    --card-bg: rgba(22, 28, 36, 0.8);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-neon: 0 0 15px rgba(255, 60, 172, 0.5);
    --shadow-glow: 0 0 20px rgba(43, 134, 197, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--bg-gradient-1), var(--bg-gradient-2), var(--bg-gradient-3)) fixed;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    padding: 6rem 0 2rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-header p {
    color: var(--text-secondary);
    max-width: 100%;
    margin: 0 auto;
    font-size: 1rem;
    padding: 0 1rem;
}

/* Terms Content */
.terms-content {
    padding: 2rem 0;
    position: relative;
}

.terms-section {
    margin-bottom: 2rem;
    background: var(--card-bg);
    width: 100%;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--card-border);
}

.terms-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
}

.terms-section h3 {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.8rem;
    color: var(--text-primary);
}

.terms-section p, .terms-section ul {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.terms-section ul {
    padding-left: 1.2rem;
}

.terms-section li {
    margin-bottom: 0.6rem;
    position: relative;
}

.terms-section li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--accent-1);
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
    top: -2px;
}

/* Table Styles */
.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.terms-table th, .terms-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.terms-table th {
    color: var(--text-primary);
    font-weight: 600;
    background-color: rgba(255, 60, 172, 0.1);
}

.terms-table td {
    color: var(--text-secondary);
}

.terms-table tr:last-child td {
    border-bottom: none;
}

/* Badges */
.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.badge img {
    height: 25px;
}

.company-info {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    text-align: center;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .page-header {
        padding: 7rem 0 3rem;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .terms-content {
        padding: 3rem 0;
    }

    .terms-section {
        padding: 2rem;
    }

    .terms-section h2 {
        font-size: 1.7rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .page-header {
        padding: 8rem 0 4rem;
    }

    .page-header h1 {
        font-size: 3.5rem;
    }

    .page-header p {
        max-width: 700px;
    }

    .terms-section {
        width: 100%;
        max-width: 900px;
        margin: 0 auto 2.5rem;
        padding: 2.5rem;
    }

    .terms-section h2 {
        font-size: 1.8rem;
    }
}