body {
    background-color: #f4f4f4;
    /* Light grey background for the whole page */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}


.policy-wrapper {
    padding: 20px;
    min-height: 80vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
    border-radius: 8px;
    color: #333;
    line-height: 1.8;
    border-top: 5px solid #3fd5ba;
    /* Accent color matching site theme */
}

.policy-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.policy-container h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.policy-container h3 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.policy-container p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #555;
}

.policy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 25px;
    list-style-type: disc;
}

.policy-container li {
    margin-bottom: 0.5rem;
    color: #555;
}

.policy-container a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-container a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .policy-container {
        padding: 20px;
        margin: 0;
    }

    .policy-container h1 {
        font-size: 1.8rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }

    .policy-container h3 {
        font-size: 1.1rem;
    }

}