/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    /* color: #333; */
    text-align: center;
}

/* Header Section */
.policy-heading-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('images/policybg.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.policy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.policy-heading-text {
    color: white;
    font-size: 4rem;
    letter-spacing: 2px;
    /* text-align: center; */
    transition: transform 0.3s ease-in-out;
}

.policy-heading-text:hover {
    transform: scale(1.5);
}


.policy-container {
    background-color: #f0f4f3; /* Light greenish background */
    padding: 40px;
    width: 80%;
    max-width: 1000px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Titles and Headers */
h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #000; /* Black title */
    margin-bottom: 30px;
}

h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000;
}

/* Paragraph Styling */
p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Section Spacing */
.policy-section {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
}

/* Background for Paragraphs */
.policy-section p {
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

/* Centering the Container */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure full height for vertical centering */
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-container {
        padding: 20px;
        width: 90%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}