/* ========================================= */
/* PRIVACY POLICY STYLING                    */
/* ========================================= */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    font-family: 'Lato', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    padding-bottom: 100px; /* Space for the floating button */
}

/* Slim Hero Section (Space-efficient) */
.slim-hero {
    background-color: #0A1128; /* Dark Navy */
    color: #fff;
    text-align: center;
    padding: 25px 20px;
    border-bottom: 4px solid #C5A059; /* Gold */
}

.slim-hero .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #C5A059;
}

.slim-hero h1 {
    font-family: 'Playfair Display', serif;
    margin: 0;
    font-size: 2rem;
    letter-spacing: 1px;
}

/* Main Content Container */
.policy-container {
    max-width: 800px;
    margin: 30px auto;
    background: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.effective-date {
    color: #777;
    font-style: italic;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.policy-container h2 {
    font-family: 'Playfair Display', serif;
    color: #0A1128;
    border-left: 4px solid #C5A059;
    padding-left: 12px;
    margin-top: 35px;
}

.policy-container ul {
    padding-left: 20px;
}

.policy-container li {
    margin-bottom: 10px;
}

/* Floating Action Bar */
.action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    border-top: 2px solid #C5A059;
    z-index: 1000;
}

.btn-understand {
    background: #C5A059;
    color: #0A1128;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.4);
}

.btn-understand:hover {
    background: #0A1128;
    color: #fff;
    box-shadow: 0 4px 15px rgba(10, 17, 40, 0.4);
}

@media (max-width: 600px) {
    .policy-container {
        margin: 15px;
        padding: 25px 20px;
    }
    .slim-hero h1 {
        font-size: 1.5rem;
    }
    .btn-understand {
        width: 100%;
        max-width: 400px;
    }
}