/* === Color Palette Definition === */
:root {
    --bg-dark: #1a1a1a;
    --accent-gold: #B59461;
    --text-light: #f8f5ee;
    --input-bg: rgba(255, 255, 255, 0.05);
    --border-muted: rgba(248, 245, 238, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.8;
}

h1, h2, h3, .playfair {
    font-family: 'Playfair Display', serif;
}




/* === Content Styles === */
.policy-container {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-muted);
    border-radius: 8px;
}

.policy-section {
    margin-bottom: 40px;
}

    .policy-section h2 {
        color: var(--accent-gold);
        font-size: 1.6rem;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(181, 148, 97, 0.2);
        padding-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .policy-section h2 i {
            font-size: 1.4rem;
        }

    .policy-section p, .policy-section li {
        color: rgba(248, 245, 238, 0.8);
        font-size: 1.05rem;
    }

.policy-list {
    padding-left: 30px;
    margin-bottom: 20px;
}

    .policy-list li {
        margin-bottom: 12px;
        position: relative;
        list-style-type: none;
    }

        .policy-list li::before {
            content: "-"; /* Bootstrap bi-dot unicode */
            font-family: "bootstrap-icons" !important;
            position: absolute;
            left: -25px;
            top: 0;
            color: var(--accent-gold);
            font-size: 1.2rem;
            line-height: 1.5;
            display: inline-block;
        }



@media (max-width: 768px) {


    .policy-container {
        padding: 25px;
        margin: 0 15px 60px;
    }
}
