/* Container Layout - Styled to match your branding */
.privacy-container {
    padding: 120px 10% 60px 10%; /* Uses percentage for better mobile/desktop balance */
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
}

/* Headings: Using your gold color */
.privacy-container h1, 
.privacy-container h2, 
.privacy-container h3 {
    color: #d4af37; /* Signature Gold */
    margin-bottom: 20px;
    font-weight: 700;
}

.privacy-container h1 { font-size: 2.8rem; }
.privacy-container h2 { font-size: 2rem; margin-top: 50px; }
.privacy-container h3 { font-size: 1.4rem; }

/* Text & Lists: Using your dark green theme */
.privacy-container p, 
.privacy-container li {
    color: #333; /* Darker, high-contrast text for readability */
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Dark Mode Adjustment for Text */
html.dark-mode .privacy-container p,
html.dark-mode .privacy-container li {
    color: #e0e0e0; /* Softer white for dark mode */
}

.privacy-container a {
    color: #1b4332; /* Signature Deep Green */
    font-weight: 600;
    text-decoration: underline;
}

/* Add a subtle decorative separator */
.privacy-container h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #d4af37;
    margin-top: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .privacy-container { padding: 90px 15px 40px 15px; }
    .privacy-container h1 { font-size: 1.8rem; }
}