/* Start of privacy.css */

/* --- Base Styles for Theme and Layout --- */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    transition: 0.3s;
    padding-top: 120px;
    padding-bottom: 120px;
}

body.light-mode {
    background: linear-gradient(135deg, #8ee7dc, #50bdb1);
    color: #fff;
}

body.dark-mode {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #e8e8e8;
}

.container {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.glass-card {
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

body.light-mode .glass-card {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

body.dark-mode .glass-card {
    background: rgba(255, 255, 255, 0.07);
    color: #e8e8e8;
}

/* --- New Styles for Privacy Page Content --- */

.privacy-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.privacy-header p {
    text-align: center;
    opacity: 0.8;
    margin-bottom: 40px;
    font-style: italic;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #f39c12; /* Unique Highlight Color */
    padding-left: 15px;
    color: #f39c12; 
}

.data-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
}

.data-list li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.data-list strong {
    color: #57c7ff; /* Highlighted data types */
}

.ndpa-focus {
    color: #27ae60; /* Green highlight for legal focus */
    font-weight: 600;
}

/* Style for the link back to T&C */
.contact-info a {
    color: #4c8bff;
    text-decoration: none;
    font-weight: 600;
}