/* legal-style.css - Styles for the Privacy, Legal, and Disclaimer pages */

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    background-color: #fdfdfd;
    background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)), url('holiday-icons-background.png');
    background-size: cover, 560px;
    background-repeat: no-repeat, repeat;
    background-attachment: fixed, fixed;
    color: #333;
    margin: 0;
    padding: 2rem;
}

.content-container {
    max-width: 800px;
    margin: 1rem auto;
    background-color: #ffffff;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.12);
    border: 1px solid #eee8f5;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50; /* A dark, professional blue-gray */
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e; /* A slightly lighter blue-gray */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    color: #3498db; /* A clear, standard link blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: #000;
}