﻿/* Privacy Policy Styles */
.privacy-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.privacy-container h1 {
    color: #0056b3;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 3px solid #e9ecef;
    padding-bottom: 1rem;
}

.privacy-container .last-updated {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.privacy-container h2 {
    color: #0056b3;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    border-left: 4px solid #0056b3;
    padding-left: 1rem;
}

.privacy-container h3 {
    color: #495057;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.privacy-container p {
    margin-bottom: 1rem;
    color: #495057;
    text-align: justify;
}

.privacy-container .intro-text {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #28a745;
    border-radius: 0 6px 6px 0;
    margin-bottom: 2rem;
}

.privacy-container .intro-text p {
    margin-bottom: 0.75rem;
}

.privacy-container .intro-text p:last-child {
    margin-bottom: 0;
}

.privacy-container ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-container ul li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #495057;
}

.privacy-container ul li::before {
    content: "•";
    color: #0056b3;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.privacy-container ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.privacy-container ul ul li {
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
}

.privacy-container ul ul li::before {
    content: "◦";
    color: #6c757d;
    font-size: 1rem;
}

.privacy-container .highlight-term {
    font-weight: 600;
    color: #0056b3;
}

.privacy-container .contact-section {
    background-color: #e3f2fd;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
    border: 1px solid #bee5eb;
}

.privacy-container .contact-section p {
    margin-bottom: 0.5rem;
}

.privacy-container .contact-section p:last-child {
    margin-bottom: 0;
}

.privacy-container .email-link {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.privacy-container .email-link:hover {
    color: #004494;
    text-decoration: underline;
}

.privacy-container .section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #dee2e6, transparent);
    margin: 2rem 0;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .privacy-container h1 {
        font-size: 1.75rem;
    }
    
    .privacy-container h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }
    
    .privacy-container h3 {
        font-size: 1.1rem;
    }
    
    .privacy-container p {
        text-align: left;
    }
}

@media print {
    .privacy-container {
        box-shadow: none;
        margin: 0;
        padding: 1rem;
    }
    
    .privacy-container h1,
    .privacy-container h2 {
        color: #000 !important;
    }
    
    .privacy-container .intro-text,
    .privacy-container .contact-section {
        background-color: transparent !important;
        border: 1px solid #000;
    }
}