body {
    background-color: #f8f9fa;
}

.policy-container {
    max-width: 800px;
    margin: 60px auto; /* Increased top/bottom margin for more space */
    padding: 40px 50px; /* More horizontal padding */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    line-height: 1.8; /* Increased line height for better readability */
}

.policy-container h1 {
    font-size: 36px; /* Larger title */
    font-weight: 600;
    color: #2c3e50; /* Darker, professional color */
    margin-bottom: 20px;
    border-bottom: 3px solid #ef4444;
    padding-bottom: 15px;
}

.policy-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #34495e; /* Slightly lighter than h1 */
    margin-top: 40px; /* More space above subheadings */
    margin-bottom: 16px;
}

.policy-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.policy-container ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.policy-container li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.policy-container strong {
    color: #333;
    font-weight: 600;
}

.policy-container a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 500;
}

.policy-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-container {
        margin: 30px 15px;
        padding: 30px;
    }

    .policy-container h1 {
        font-size: 28px;
    }

    .policy-container h2 {
        font-size: 20px;
    }
}