/* Complete Privacy Policy Page Styles - Independent */
:root {
    --primary: #16a8c7;
    --primary-dark: #0d7a91;
    --text: #2d3748;
    --light: #f7fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

section {
    scroll-margin-top: 100px;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary);
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

/* Header */
.header {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.main-nav {
    display: flex;
}

.logo-text {
    font-weight: 600;
    color: var(--primary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover {
    background: rgba(22, 168, 199, 0.1);
}

/* Section title */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin: 1.5rem 0;
}

/* Privacy Content - Main content block */
.privacy-content {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    padding: 3rem 2rem;
    line-height: 1.8;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.privacy-content h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.privacy-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
    color: var(--text);
}

.privacy-content strong {
    font-weight: 600;
    color: var(--primary-dark);
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.8rem;
    text-align: justify;
    color: var(--text);
    padding-left: 0.5rem;
}

.privacy-content li::marker {
    color: var(--primary);
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 3rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .header .logo {
        margin-left: 0.5rem;
    }

    .privacy-content {
        padding: 2rem 1rem;
        margin: 1rem auto 2rem auto;
    }

    .privacy-content h2 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.8rem 0;
    }

    .hero-container,
    .contact-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .container {
        padding: 0;
    }
}
