/* ===== VARIABLES ===== */
:root {
    --primary-color: #40448b;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #eaeaea;
    --background-light: #f8f9fa;
    --transition: all 0.3s ease;
}

/* ===== PRIVACY CONTENT STYLES ===== */
.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.privacy-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.privacy-content h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.privacy-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.privacy-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.privacy-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.privacy-content li {
    margin-bottom: 10px;
    position: relative;
}

.privacy-content li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.privacy-content a:hover {
    text-decoration: underline;
    color: #2d3174;
}

/* ===== PRIVACY SECTIONS ===== */
.privacy-section {
    background: var(--background-light);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
}

.privacy-section h2,
.privacy-section h3 {
    margin-top: 0;
}

.last-updated {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #4a90e2;
}

.contact-info {}

.privacy-notice {
    background: #fff8e1;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #ffc107;
}

.privacy-notice p {
    margin: 0;
    font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .privacy-content {
        padding: 20px 15px;
    }

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

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

    .privacy-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 15px 10px;
    }

    .privacy-content h1 {
        font-size: 1.8rem;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .privacy-section {
        padding: 15px;
    }
}