:root {
    --primary-color: #00ff00;
    /* Green Color */
    --secondary-color: #000;
    /* Black Color */
    --accent-color: #00cfff;
    /* Bright Blue Background */
    --text-color-light: #fff;
    /* White Text */
    --text-color-dark: #000;
    /* Dark Text */
    --hover-color: #00e600;
    /* Hover color for buttons */
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color-light);
    background-color: var(--secondary-color);
}

/* Section Styling */
section {
    padding: 5rem 0;
}



/* Privacy Policy Section */
.privacy-policy-section {
    background-color: var(--secondary-color);
    /* Black background */
    color: var(--text-color-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-container {
    background-color: var(--text-color-light);
    /* White background for the content */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    /* Wider container as per the layout */
    margin: 0 auto;
}

.privacy-content {
    font-size: 1.1rem;
    line-height: 1.6;
}

.privacy-content ul {
    margin-left: 20px;
    list-style-type: disc;
}

/* Back to Top Button Styling */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--text-color-dark);
    border: none;
    padding: 15px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#scrollToTopBtn:hover {
    background-color: var(--hover-color);
}