/* --- Privacy Policy Container --- */
.privacy-policy-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    /* Added responsive horizontal padding instead of margin */
    padding: 2rem;
    margin: 0 auto;
    max-width: 900px;
    color: var(--text-color);
    box-shadow: 0 8px 32px 0 var(--shadow-color);
    animation: fadeIn 1s ease-in-out;
}

/* Added margin to the parent container for spacing */
.content-wrapper {
    padding: 0 20px;
}

.header_name{
    margin-left: 100%;
}

.privacy-policy-container .page-title {
    margin-bottom: 0.5rem;
}

.privacy-policy-container .effective-date {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color-dark);
    font-style: italic;
}

.policy-section {
    margin-bottom: 1rem;
    text-align: left;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

/* Made text lighter for better visibility */
.policy-section p, .policy-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color); /* Changed from --text-color-dark */
    opacity: 0.9; /* Slightly transparent for depth */
}

.policy-section ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 1rem;
}

.policy-section a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 1.5rem;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section p, .policy-section li {
        font-size: 0.95rem;
    }
}

.privacy-policy-container,
.privacy-policy-container .page-title,
.privacy-policy-container .effective-date,
.policy-section h2,
.policy-section p,
.policy-section li {
    /* Set very light text on the glass background */
    color: #000000;
}

/* Make section headings stand out a bit more */
.policy-section h2 {
    font-weight: 700;
}

/* Optional: slightly larger base font for long-form reading */
.policy-section p,
.policy-section li {
    font-size: 1.05rem;
}

/* Link colour tuned for contrast on dark bg */
.policy-section a {
    color: #4ea8ff;
}