:root {
    --primary-color: #3b82f6;
    --secondary-color: #1e293b;
    --accent-color: #10b981;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --warning-bg: #fef3c7;
    --warning-text: #92400e;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--secondary-color);
    background-color: #fff;
    line-height: 1.6;
    padding-top: 80px;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: #0f172a;
}

.nav-link {
    font-weight: 600;
    color: #475569 !important;
    font-size: 0.95rem;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Styling */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.section-title:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.info-box {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.warning-box {
    background: var(--warning-bg);
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    color: var(--warning-text);
}

.warning-box h4 {
    color: var(--warning-text);
    margin-bottom: 15px;
}

.important-box {
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

ul.terms-list {
    list-style-type: none;
    padding-left: 0;
}

ul.terms-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

ul.terms-list li:last-child {
    border-bottom: none;
}

ul.terms-list li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    margin-top: 60px;
    padding: 50px 0 30px;
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

}
