﻿/* === PRIVACY POLICY PAGE STYLES === */

.privacy-container {
    max-width: 900px;
    margin: 1rem auto;
    padding: 2rem 2.5rem;
    background-color: #fffdf6; /* soft ivory tone to separate from pure white */
    border: 1px solid #f2e6b6;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Headings */
.privacy-container h1,
.privacy-container h2 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-container h1 {
    font-size: 2.2rem;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.privacy-container h2 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-top: 2rem;
}

/* Paragraphs and text */
.privacy-container p {
    color: #333;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Links */
.privacy-container a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-container a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Horizontal rule */
.privacy-container hr {
    border: none;
    border-top: 2px solid #d4af37;
    margin: 3rem 0 1rem 0;
}

/* Footer note */
.privacy-container p:last-of-type {
    text-align: center;
    color: #555;
    font-size: 0.95rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .privacy-container {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .privacy-container h1 {
        font-size: 1.8rem;
    }

    .privacy-container h2 {
        font-size: 1.25rem;
    }

    .privacy-container p {
        font-size: 0.95rem;
    }
}
