
.privacy-container {
    max-width: 90%;
    margin: 20px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.privacy-container h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #007bff;
}

.privacy-container h2 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0056b3;
}

.privacy-container p {
    margin-bottom: 10px;
}

.privacy-container ul {
    margin-left: 20px;
    list-style-type: disc;
}

.privacy-container a {
    color: #007bff;
    text-decoration: none;
}

.privacy-container a:hover {
    text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .privacy-container {
        padding: 15px;
    }

    .privacy-container h1 {
        font-size: 24px;
    }

    .privacy-container h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 10px;
    }

    .privacy-container h1 {
        font-size: 20px;
    }

    .privacy-container h2 {
        font-size: 18px;
    }
}

/* ---------------------------------------------------------|| END ----------------------------------------------------------------- */


/* --------------------------------------------|| BOT USE INFO MARQUEE ||------------------------------------------------------*/

.marquee-content {
    font-size: 16px;
    color: #4CAF50;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


/* ------------------------------------ END -------------------------------------- */


.language-section {
    display: none; /* hide all language sections by default */
}

.language-section.active {
    display: block; /* show only the active language */
}

