/* Global Resets and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F9FA; /* Light background for the body */
    color: #212529; /* Dark primary text color */
    line-height: 1.7;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
header {
    background-color: #FFFFFF; /* White background for header */
    padding: 20px 0;
    border-bottom: 1px solid #DEE2E6; /* Light grey border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #212529; /* Dark color for logo */
    text-decoration: none;
}

header nav a {
    color: #495057; /* Medium dark grey for nav links */
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover,
header nav a.active {
    color: #6d2c57; /* Purple accent for hover/active link - still works well */
}

/* Main Content Styling */
.privacy-policy-content {
    padding: 40px 0;
}

.content-section {
    background-color: #FFFFFF; /* White background for content block */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Softer shadow for light theme */
    border: 1px solid #E9ECEF; /* Optional: subtle border for the card */
}

.content-section h2 {
    color: #6d2c57; /* Purple accent for main title */
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 2px solid #6d2c57;
    padding-bottom: 10px;
    display: inline-block;
}

.effective-date {
    color: #6C757D; /* Medium grey for secondary text */
    font-style: italic;
    margin-bottom: 30px;
}

.content-section h3 {
    color: #343A40; /* Dark grey for section titles */
    font-size: 1.6em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #CED4DA; /* Light grey separator for H3 */
}

.content-section h4 {
    color: #495057; /* Medium dark grey for H4 */
    font-size: 1.3em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-section h5 {
    color: #495057; /* Medium dark grey for H5 */
    font-size: 1.1em;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section p {
    margin-bottom: 18px;
    color: #495057; /* Default paragraph color - medium dark grey */
}

.content-section p strong, .content-section li strong {
    color: #212529; /* Darker for emphasis */
    font-weight: 600;
}

.content-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 18px;
}

.content-section ul li {
    color: #495057; /* List item color */
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

/* Custom bullet point style */
.content-section ul li::before {
    content: '•';
    color: #6d2c57; /* Purple accent for bullets */
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 5px;
    font-size: 1.2em;
    line-height: 1.1;
}

.content-section ul ul { /* Nested lists */
    margin-top: 10px;
    margin-left: 20px;
}

.content-section ul ul li::before {
    content: '◦';
    font-size: 1em;
}

.content-section a {
    color: #6d2c57; /* Purple accent for links */
    text-decoration: none;
    font-weight: 500;
}

.content-section a:hover {
    text-decoration: underline;
    color: #5a3eaa; /* Darker purple on hover for better contrast if needed */
}

/* Footer Styling */
footer {
    background-color: #FFFFFF; /* White background for footer */
    color: #6C757D; /* Medium grey for footer text */
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #DEE2E6; /* Light grey border */
}

footer p {
    margin-bottom: 8px;
}

footer a {
    color: #6C757D; /* Links in footer */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #6d2c57; /* Purple accent on hover */
}

/* Responsive Adjustments (remain largely the same, styling is about colors) */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 15px;
    }

    header nav a {
        margin-left: 0;
        margin-right: 15px;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    header nav {
      width: 100%;
    }

    .content-section h2 {
        font-size: 1.8em;
    }

    .content-section h3 {
        font-size: 1.4em;
    }

    .content-section h4 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    .container {
        width: 95%;
        padding: 0 10px;
    }
    .content-section {
        padding: 20px;
    }
    .logo {
        font-size: 1.5em;
    }
}