:root {
    --primary-purple: #2d1741;
    --secondary-purple: #5e3289;
    --accent-red: #e03345;
    --text-gray: #4b5563;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #fbfbfb;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-hero {
    background-color: var(--primary-purple);
    padding: 6rem 2rem;
    text-align: center;
}

.privacy-hero h1 {
    color: var(--text-white);
    font-family: 'Gopher Black', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.privacy-hero p {
    color: var(--text-white);
    font-family: 'Gopher Regular', sans-serif;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.privacy-section {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    color: var(--text-gray);
    font-family: 'Gopher Black', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.privacy-section p {
    color: var(--text-gray);
    font-family: 'Gopher Regular', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-section li {
    color: var(--text-gray);
    font-family: 'Gopher Regular', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.privacy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-purple);
    border-radius: 50%;
}

.privacy-section a {
    color: var(--secondary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--primary-purple);
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-hero p {
        font-size: 1.1rem;
    }

    .privacy-section {
        padding: 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }
} 