body {
    font-family: 'Inter', sans-serif;
    color: #E0E0E0;
    background: #000000; 
    margin: 0;
    padding: 0;
}

/* Ensure the navbar does not overlap */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #000; 
}

/* Privacy Policy Header Section */
.privacy-header {
    background: #0d0d0d; 
    color: #FFFFFF; 
    text-align: center;
     display: flex; 
    justify-content: center;
    height: 350px; 
    margin-top: 0; 
    padding-right:80px;
}

/* Privacy Policy Title */
.privacy-header h1 {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    color: #E0E0E0; 
    padding-left: 50px; 
}

/* Centering the Content */
.privacy-container {
    display: flex;
    justify-content: center;
    padding: 0px 50px 20px;
    flex-direction: column;
    align-items: center;
    padding-top: 0; 
}

/* Content Box */
.content-wrapper {
    max-width: 1100px;
    background: #000000; 
    padding: 40px;
    border-radius: 8px;
    box-shadow:none !important; 
    border:none !important;
    outline:none !important;
    text-align: left;
    border: 1px solid #333; 
    transition: all 0.3s ease-in-out;
}

/* Headings */
h2 {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF; 
    margin-top: 20px;
    transition: color 0.3s ease-in-out; 
}

/* Hover Effect for Headings */
h2:hover {
    color: #4CAF50; 
}

/* Paragraphs */
p {
    font-size: 16px;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.privacy-container ul {
    padding-left: 20px;
    margin: 0;
}
.privacy-container ul li {
    list-style-type: disc;
    margin-left: 0;
    padding-left: 5px;
    line-height: 1.8;
}

.links_col ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}
.image-wrapper img {
    max-width: 100%;  
    height: auto;   
    display: block;
    margin: 0 auto;  
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        width: 85%;
        padding: 35px;
    }

    .privacy-header {
        height: 300px; 
        padding: 100px 15px;
        margin-top: 90px;
    }

    .privacy-header h1 {
        font-size: 42px;
        padding-left: 30px; 
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .content-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .image-wrapper {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;  /* Add spacing between image and text */
    }
    .privacy-container {
        padding: 30px 15px;
    }

    .content-wrapper {
        width: 100%;
        padding: 20px;
    }

    .privacy-header {
        padding: 80px 15px;
        height: 250px; 
        margin-top: 100px;
    }

    .privacy-header h1 {
        font-size: 34px;
        padding-left: 20px;
    }
    .text-content p {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;  /* Ensure better text alignment */
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        width: 100%;
        padding: 20px;
    }

    .privacy-header {
        padding: 60px 10px;
        height: 220px; 
        margin-top: 110px;
    }

    .privacy-header h1 {
        font-size: 30px;
        padding-left: 15px;
    }

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 13px;
        line-height: 1.6;
    }
}
