/* Privacy Policy Page */
.container {
    padding: 5rem 2rem; /* Add some padding to the page */
}

/* Section Title Styling */
h1 {
    font-family: 'Heebo', sans-serif; /* Using the same font */
    font-weight: 700;
    font-size: 32px;
    color: var(--primary); /* Primary color for headings */
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 2rem;
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark); /* Dark text color */
    text-align: justify;
    margin-bottom: 20px;
}

ul {
    margin-top: 10px;
    margin-bottom: 20px;
}

ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
}

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Introductory Text */
.text-muted {
    font-size: 18px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .container {
        padding: 3rem 1rem;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
    }

    .text-muted {
        font-size: 16px;
    }
}
