/* Privacy Policy Page - Standalone Styles */

body {
    font-family: "europa", Arial, sans-serif;
    font-size: 15px;
    color: #222;
    background: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

.privacy-section {
    padding: 80px 0 40px;
    background: #fff;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 0 16px;
}

.privacy-title {
    font-family: "europa", Arial, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 8px;
    color: #222;
}

.privacy-date {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.privacy-content h1,
.privacy-content h2,
.privacy-content h3,
.privacy-content h4,
.privacy-content h5,
.privacy-content h6 {
    font-family: "europa", Arial, sans-serif;
    font-weight: 700;
    color: #222;
    margin-top: 2.2em;
    margin-bottom: 0.7em;
    line-height: 1.2;
}

.privacy-content h1 {
    font-size: 2rem;
}
.privacy-content h2 {
    font-size: 1.3rem;
}
.privacy-content h3 {
    font-size: 1.1rem;
}
.privacy-content h4,
.privacy-content h5,
.privacy-content h6 {
    font-size: 1rem;
}

.privacy-content p {
    margin-bottom: 1.1em;
}

.privacy-content ul {
    margin: 0 0 1.1em 1.5em;
    padding: 0;
}
.privacy-content ul li {
    margin-bottom: 0.5em;
    list-style-type: disc;
}

.privacy-content a {
    color: #0066cc;
    text-decoration: underline;
}
.privacy-content a:hover {
    color: #004499;
}

@media (max-width: 600px) {
    .privacy-section {
        padding: 60px 0 20px;
    }
    .privacy-content {
        padding: 0 6px;
    }
    .privacy-content h1 {
        font-size: 1.3rem;
    }
    .privacy-content h2 {
        font-size: 1.1rem;
    }
    .privacy-content h3 {
        font-size: 1rem;
    }
}

/* Privacy Policy Navigation Bar */
.privacy-navbar {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    padding: 0.5em 0;
    margin-bottom: 2em;
    position: sticky;
    top: 0;
    z-index: 100;
}
.privacy-navbar-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}
.privacy-navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.privacy-logo-img {
    height: 38px;
    width: auto;
    display: block;
}
.privacy-navbar-links {
    display: flex;
    gap: 1.5em;
}
.privacy-navbar-links a {
    font-family: "europa", Arial, sans-serif;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.privacy-navbar-links a:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* Privacy Policy Footer */
.privacy-footer {
    width: 100%;
    border-top: 1px solid #e5e5e5;
    background: #fff;
    margin-top: 3em;
    padding: 1.5em 0 1em 0;
}
.privacy-footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5em;
    padding: 0 16px;
}
.privacy-footer-logo {
    flex-shrink: 0;
}
.privacy-footer-text {
    font-family: "europa", Arial, sans-serif;
    font-weight: 700;
    color: #222;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}
.privacy-footer-copyright {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
}

@media (max-width: 600px) {
    .privacy-navbar-container,
    .privacy-footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7em;
        padding: 0 6px;
    }
    .privacy-navbar {
        margin-bottom: 1.2em;
    }
    .privacy-footer {
        margin-top: 2em;
        padding: 1em 0 0.7em 0;
    }
    .privacy-logo-img {
        height: 30px;
    }
} 