/* General Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: rgb(247, 245, 245);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container{
    margin-bottom: 45px !important;
}
/* Privacy Policy Section */
#privacy-policy {
    max-width: 800px;
    margin: auto;
    padding: 30px; /* Increased padding for the entire section */
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Heading Styling */
#privacy-policy h2 {
    font-size: 2rem;
    color: #026391;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-bottom: 20px; /* Space between heading and text */
}

/* Paragraph Styling */
.policy-text {
    font-size: 1rem;
    text-align: justify;
    color: #333;
    line-height: 1.8;
    background: #f0efef;
    padding: 20px; 
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

/* Responsive Styling */
@media (max-width: 768px) {
    #privacy-policy {
        padding: 20px; /* Reduced padding for smaller screens */
    }

    #privacy-policy h2 {
        font-size: 1.5rem;
    }

    .policy-text {
        font-size: 0.9rem;
        padding: 15px; /* Adjusted padding for smaller screens */
    }
}
