/* ==============================
   Privacy Policy Page Styling
   FULL WIDTH VERSION
============================== */

.privacy-policy-page {
    padding: 70px 0;
    background-color: #f9f9f9;
}

/* Full width content */
.privacy-policy-content {
    width: 100%;
    max-width: 1400px;
    /* readability ke liye */
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 80px;
    border-radius: 0;
    /* full-width feel */
    box-shadow: none;
    /* clean corporate look */
}

/* Headings */
.privacy-policy-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1c1c1c;
    text-align: center;
    /* Heading ko center karega */
    margin-bottom: 20px;
    /* Thoda space niche */
}

.privacy-policy-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 12px;
    color: #333333;
}

/* Text */
.privacy-policy-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 16px;
}

.privacy-policy-content ul {
    padding-left: 22px;
    margin-bottom: 22px;
}

.privacy-policy-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 8px;
    list-style: disc;
}

/* Links */
.privacy-policy-content a {
    color: #b38c4d;
    /* carpet theme golden shade */
    font-weight: 500;
    transition: all 0.3s ease;
}

.privacy-policy-content a:hover {
    color: #000000;
    text-decoration: underline;
}

/* Strong text */
.privacy-policy-content strong {
    color: #222222;
    font-weight: 600;
}

/* Divider under headings */
.privacy-policy-content h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #b38c4d;
    margin-top: 8px;
    border-radius: 2px;
}

/* ==============================
   Responsive
============================== */

@media (max-width: 1200px) {
    .privacy-policy-content {
        padding: 50px 50px;
    }
}

@media (max-width: 991px) {
    .privacy-policy-content {
        padding: 40px 30px;
    }

    .privacy-policy-content h1 {
        font-size: 32px;
    }

    .privacy-policy-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .privacy-policy-page {
        padding: 50px 0;
    }

    .privacy-policy-content {
        padding: 30px 18px;
    }

    .privacy-policy-content h1 {
        font-size: 26px;
    }
}