:root {
    --gold: #c9a24d;
    --dark: #222;
    --grey: #666;
    --beige: #f5f1ea;
    --light-bg: #fafafa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-family: 'Playfair Display', serif;
}

body {
    background: #fff;
    color: var(--dark);
    line-height: 1.7;
}

/* ================= FULL WIDTH HEADER ================= */

.policy-header {
    background: var(--beige);
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.policy-header-inner {
    text-align: center;
    max-width: 800px;
}

.policy-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 15px;
}

.policy-header p {
    color: var(--grey);
    font-size: 15px;
}



/* ================= POLICY SECTIONS ================= */

.policy-section {
    max-width: 900px;
    /* Control card width */
    margin: 20px auto 40px auto;
    /* Center horizontally */
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: var(--light-bg);
}


.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--gold);
}

.policy-section h3 {
    margin: 20px 0 10px;
    font-size: 18px;
}

.policy-section ul {
    margin-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .policy-header {
        padding: 60px 20px;
    }

    .policy-header h1 {
        font-size: 26px;
    }

    .policy-section {
        padding: 18px;
    }

    .policy-section h2 {
        font-size: 20px;
    }
}