:root {
    --primary-pink: #ff69b4;
    --dark-pink: #db2777;
    --light-pink: #fdf2f8;
    --accent-gold: #fbbf24;
    --text-dark: #4c0519;
    --gradient-primary: linear-gradient(135deg, #ff69b4, #db2777);
    --gradient-secondary: linear-gradient(135deg, #fdf2f8, #fbcfe8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lovelace', serif;
    background: var(--gradient-secondary);
    color: var(--text-dark);
    line-height: 1.6;
}

.policies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.policies-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: var(--gradient-primary);
    border-radius: 15px;
    color: white;
}

.policies-header h1 {
    font-family: 'Pinyon Script', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.back-home {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease; /* ADDED */
}
.back-home:hover {
    transform: scale(1.05); /* ADDED */
}

.policies-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.policies-nav a {
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark-pink);
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.policies-nav a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.policy-section {
    background: white;
    margin-bottom: 3rem;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.policy-section h2 {
    font-family: 'Pinyon Script', cursive;
    font-size: 3rem;
    color: var(--dark-pink);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light-pink);
    padding-bottom: 1rem;
}

.policy-content h3 {
    color: var(--dark-pink);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.policy-content p,
.policy-content li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.policy-content ul {
    margin: 1rem 0 2rem 2rem;
}

.policy-content a {
    color: var(--dark-pink);
    text-decoration: none;
}
.policy-content a:hover {
    text-decoration: underline; /* ADDED */
}

@media (max-width: 768px) {
    .policies-container {
        padding: 1rem;
    }
    
    .policies-header {
        padding: 1.5rem; /* ADDED */
        margin-bottom: 2rem; /* ADDED */
    }
    
    .policies-header h1 {
        font-size: 3rem;
    }
    
    .policies-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem; /* ADDED */
        margin-bottom: 2rem; /* ADDED */
    }
    
    .policy-section {
        padding: 2rem 1.5rem;
    }

    .policy-section h2 {
        font-size: 2.5rem; /* ADDED */
    }
}

/* --- ADDED: Tweaks for very small screens --- */
@media (max-width: 480px) {
    .policies-header h1 {
        font-size: 2.5rem;
    }
    .policy-section h2 {
        font-size: 2rem;
    }
    .policy-content p,
    .policy-content li {
        font-size: 1rem;
    }
}