:root {
    --background-color: #F5F5F5;
    --text-color: #333333;
    --border-color: #4A6A8A;
    --subtitle-color: #666666;
    --cta-background: linear-gradient(45deg, #4A4A7A, #6A4A9A);
    --cta-background-hover: linear-gradient(45deg, #6A4A9A, #8A6ABA);
    --cta-border: #4A6A8A;
    --footer-shadow: rgba(74, 106, 138, 0.1);
}

body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: var(--background-color) !important;
    color: var(--text-color);
    overflow-x: hidden;
}

header {
    background: var(--background-color) !important;
    color: var(--text-color);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.privacy-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem;
    background: var(--background-color) !important;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.privacy-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.privacy-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-section ul li {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.privacy-section ul li strong {
    color: var(--text-color);
    opacity: 1;
}

.privacy-section a {
    color: #FFD700;
    text-decoration: none;
    font-size: 1rem;
}

.privacy-section a:hover {
    text-decoration: underline;
    color: var(--text-color);
}

footer {
    background: transparent !important;
    color: var(--subtitle-color);
    text-align: center;
    padding: 1rem;
    border-top: none;
    position: static;
    width: 100%;
    box-shadow: none;
    z-index: auto;
    margin-top: 2rem;
    font-size: 0.85rem;
}

footer p {
    margin: 0;
    opacity: 0.7;
}

footer a {
    color: var(--subtitle-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .privacy-section {
        margin: 4rem auto;
        padding: 1rem;
    }

    .privacy-section h1 {
        font-size: 2rem;
    }

    .privacy-section p {
        font-size: 1rem;
    }

    .privacy-section ul {
        max-width: 100%;
        padding: 0 1rem;
    }

    .privacy-section ul li {
        font-size: 0.9rem;
    }

    .privacy-section a {
        font-size: 0.9rem;
    }

    footer {
        position: static;
        margin-top: 1.5rem;
        padding: 0.8rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .privacy-section h1 {
        font-size: 2.2rem;
    }

    .privacy-section p {
        font-size: 1rem;
    }

    .privacy-section ul li {
        font-size: 0.9rem;
    }
}