/* ===== PRIVACYBELEID PAGE STYLES ===== */

/* Hero Section - Privacy Page Specific */
.privacybeleid-page .hero-section {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
    padding-top: 80px; /* Add padding to account for fixed header */
}

.privacybeleid-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.privacybeleid-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.privacybeleid-page .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.privacybeleid-page .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.privacybeleid-page .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Privacy Content */
.privacy-content {
    padding: 5rem 0;
    background: #f8f9fa;
}

.privacy-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-color);
}

.privacy-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.privacy-date {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.privacy-intro {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-intro p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.privacy-section h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    margin-right: 1rem;
    border-radius: 2px;
}

.privacy-section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Contact Info Section */
.privacy-section .contact-info {
    margin-top: 1rem;
    text-align: left;
}

.privacy-section .contact-info ul {
    padding-left: 0;
    margin: 0;
}

.privacy-section .contact-info li {
    text-align: left;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacybeleid-page .hero-section {
        min-height: 30vh;
        padding-top: 70px;
    }
    
    .privacybeleid-page .hero-title {
        font-size: 2.5rem;
    }
    
    .privacybeleid-page .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .privacy-content {
        padding: 3rem 0;
    }
    
    .privacy-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .privacy-header h2 {
        font-size: 2rem;
    }
    
    .privacy-section h3 {
        font-size: 1.25rem;
    }
    
    .privacy-section .contact-info {
        padding: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .privacybeleid-page .hero-title {
        font-size: 3rem;
    }
    
    .privacy-container {
        padding: 2.5rem;
    }
} 