/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #fafafa; /* Slightly lighter background */
    margin: 0;
    padding: 0;
    color: #333;
}

/* Policy Container */
.policy-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Larger shadow */
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s ease; /* Smooth transition */
}

/* Hover effect for the policy container */
.policy-container:hover {
    transform: scale(1.02); /* Slightly scale up the container */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

h1 {
    text-align: center;
    font-size: 36px;
    color: #ff7f50; /* Coral color */
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); /* Soft shadow */
}

/* Adding hover effect to h1 */
h1:hover {
    color: #ff4500; /* Slightly darker shade of coral */
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

h2 {
    font-size: 24px;
    margin-top: 20px;
    color: #333;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

/* Adding hover effect to h2 */
h2:hover {
    color: #ff7f50; /* Change color on hover */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
}

ul li {
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
}

/* Adding hover effect to links */
a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff7f50; /* Coral color on hover */
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-container {
        padding: 20px;
        margin: 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
    }

    ul {
        padding-left: 15px;
    }

    ul li {
        font-size: 14px;
    }
}
