body {
    font-family: 'Inter', sans-serif;
    color: #E0E0E0;
    background: #000000;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    color: #000000;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

/* Privacy Policy Header Section */
.privacy-header {
    background: #000000;
    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;
}

/* Privacy Content */
.privacy-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 0 50px 20px;
    background: #000000;
    width: 100%;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 85%;
    width: 85%;
    background: #000000;
    padding: 40px;
    border-radius: 8px;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    text-align: left;
    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;
}

/* Compliance Boxes */
.policy-box {
    background: #000000;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #000000;
    margin: 20px 0;
}

.policy-heading {
    font-size: 1.5rem;
    color: #4CAF50;
}

.policy-subheading {
    font-size: 1.25rem;
    color: #ddd;
    margin-top: 15px;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect for Subheadings */
.policy-subheading:hover {
    color: #4CAF50;
}

.policy-list {
    list-style-type: disc;
    margin-left: 20px;
}

.policy-item {
    font-size: 1rem;
    margin-bottom: 8px;
}

/* Highlight */
.highlight {
    color: #4CAF50;
}

/* 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-wrapper {
        width: 100%;
        padding: 20px;
    }

    .privacy-header {
        height: 250px;
        margin-top: 100px;
    }

    .privacy-header h1 {
        font-size: 34px;
        padding-left: 20px;
    }

    .policy-box {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        width: 100%;
        padding: 0 15px 20px;
    }

    .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;
    }
}
