/* privacypolicy.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #290611;
    line-height: 1.8;
}

/* HEADER BANNER */

.header-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.header-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTENT SECTION */

.content-section {
    background: #ADD786;
    padding: 60px 20px;
}

.content-wrapper {
    max-width: 1100px;
    margin: auto;
}

h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    text-align: center;
    color: #290611;
}

.last-updated {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 600;
}

.intro-text {
    font-size: 17px;
    margin-bottom: 35px;
    text-align: justify;
}

.section-heading {
    font-size: 22px;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #290611;
}

.section-content {
    font-size: 16px;
    margin-bottom: 18px;
    text-align: left;
}

.sub-heading {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 8px;
}

.contact-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-box p {
    margin-bottom: 8px;
}

strong {
    font-weight: 800;
}

.policy-section {
    border-bottom: 1px solid #290611;
    padding-bottom: 35px;
    margin-bottom: 35px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .content-section {
        padding: 40px 15px;
    }

    h1 {
        font-size: 34px;
    }

    .section-heading {
        font-size: 20px;
    }

    .section-content,
    .intro-text,
    ul li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    .section-heading {
        font-size: 18px;
    }

    .last-updated {
        font-size: 14px;
    }
}
