/* Force light mode across entire website */
html {
    color-scheme: light !important;
}

body {
    color-scheme: light !important;
    background-color: white !important;
    color: black !important;
}

/* Privacy Policy Page Specific Styles */

/* Privacy Policy Hero Section */
.privacy-hero {
    padding: 80px 0 80px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    background: #ffffff;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 100%;
    background-color: #ffc801;
    z-index: 0;
    box-shadow: inset 0px 22px 15px rgba(0, 0, 0, 0.1), inset 0px 22px 15px rgba(0, 0, 0, 0.15);

}

.privacy-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
    z-index: 2;
}

.privacy-hero>* {
    position: relative;
    z-index: 1;
}


.privacy-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: black;
    margin: 0 0 0 0;
}

.privacy-hero .last-updated {
    font-size: 1.2rem;
    color: black;
    font-weight: 500;
    margin: 0;
}

/* Privacy Policy Content Section */
.privacy-content-section {
    padding: 80px 0;
    background: white;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.privacy-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 100%;
    box-shadow: inset 0px 8px 15px rgba(0, 0, 0, 0.2), inset 0px -8px 15px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 0;
}

.privacy-content-section>* {
    position: relative;
    z-index: 1;
}


.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.privacy-item {
    font-size: 1rem;
    line-height: 1.7;
    color: black;
    margin-bottom: 30px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 10px;

}

.privacy-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.item-number {
    font-weight: 700;
    margin-right: 10px;
}

.privacy-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: black;
    margin-bottom: 12px;
    text-align: left;
}

.sub-text {
    font-weight: 500;
    margin-top: 15px !important;
    margin-bottom: 8px !important;
}

.indent-text {
    margin-left: 20px;
    margin-bottom: 6px !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 80px 0 60px;
    }

    .footer-bottom {
        margin: 0 -15px;
    }

    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-hero .last-updated {
        font-size: 1rem;
    }

    .privacy-content-section {
        padding: 60px 0;
    }

    .privacy-content {
        padding: 0 20px;
    }

    .privacy-item {
        margin-bottom: 35px;
    }

    .privacy-item h3 {
        font-size: 1rem;
    }

    .privacy-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .indent-text {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-hero .last-updated {
        font-size: 0.9rem;
    }

    .privacy-content {
        padding: 0 15px;
    }

    .privacy-item {
        margin-bottom: 30px;
    }

    .privacy-item h3 {
        font-size: 0.95rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .item-number {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .privacy-item p {
        font-size: 0.9rem;
    }

    .indent-text {
        margin-left: 12px;
    }
}