/* Privacy Policy Page Styles */

body {
    overflow-y: auto;
    padding-bottom: 60px;
    min-height: 100vh;
    box-sizing: border-box;
    background-color: rgba(245, 245, 245, 0.95); /* Light grey background for the body */
}

.privacy-policy-content {
    max-width: 1200px;
    width: 90%;
    margin: 60px auto 2rem;
    padding: 2rem 4rem;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    text-align: center;
    /* Removed background-color and box-shadow */
}

.privacy-policy-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
    color: #000;
}

.privacy-policy-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.privacy-policy-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.privacy-policy-content p, .privacy-policy-content ul {
    margin-bottom: 20px;
    color: #444;
}

.privacy-policy-content ul {
    list-style-position: inside;
    padding-left: 0;
}

.privacy-policy-content li {
    margin-bottom: 10px;
}

.privacy-policy-content strong {
    color: #000;
}

/* Stylish separator */
.privacy-policy-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
    margin: 30px 0;
}

@media (max-width: 1024px) {
    .privacy-policy-content {
        padding: 2rem;
        font-size: 16px;
    }

    .privacy-policy-content h1 {
        font-size: 32px;
    }

    .privacy-policy-content h2 {
        font-size: 26px;
    }

    .privacy-policy-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .privacy-policy-content {
        width: 95%;
        margin: 70px auto 1rem;
        padding: 1.5rem;
        font-size: 15px;
    }

    .privacy-policy-content h1 {
        font-size: 28px;
    }

    .privacy-policy-content h2 {
        font-size: 24px;
    }

    .privacy-policy-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-content {
        width: 80%;
        margin-top: 120px;
        padding: 1rem;
        font-size: 14px;
    }

    .privacy-policy-content h1 {
        font-size: 24px;
    }

    .privacy-policy-content h2 {
        font-size: 20px;
    }

    .privacy-policy-content h3 {
        font-size: 18px;
    }
}