:root {
    --primary: #5D6CF8;
    --bg-light: #F8FAFF;
    --text-dark: #1A1C30;
    --text-muted: #575A7B;
    --white: #FFFFFF;
    --border: #E2E8F0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    padding: 0 4rem;
}

/* Header */
header {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

main {
    padding-top: 4rem; /* Spacing to prevent overlap with sticky header */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: var(--primary);
    color: var(--white);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* Main Content */
.privacy-content {
    background: var(--white);
    padding: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 4rem;
}

h1 {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
}

.effective-date {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.2rem;
    color: var(--primary);
}

.legal-section p {
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.legal-section li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.legal-section strong {
    color: var(--text-dark);
}

.contact-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    border: 1px dashed var(--primary);
    margin-top: 1.5rem;
}

.contact-box a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
footer {
    text-align: center;
    padding-bottom: 4rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem;
    }
    h1 {
        font-size: 2.2rem;
    }
}
