/* Container for Privacy Policy */
.privacy-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    animation: privacy-fadeIn 1s ease-in-out;
    padding-top: 120px;
}

/* Title Styling */
.privacy-policy-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #81659E;
    margin-bottom: 20px;
}

/* Subtitle Styling */
.privacy-policy-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #81659E;
    margin-bottom: 10px;
}

/* Paragraph Styling */
.privacy-policy-intro {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Link Styling */
.privacy-policy-link {
    color: #81659E;
    text-decoration: none;
}

.privacy-policy-link:hover {
    text-decoration: underline;
}

/* Ordered List Styling */
.privacy-policy-list {
    font-size: 16px;
    list-style-type: decimal;
    padding-left: 20px;
}

/* List Item Styling */
.privacy-policy-item {
    margin-bottom: 10px;
}

/* Text within List Items */
.privacy-policy-item-text {
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-title {
        font-size: 28px;
    }

    .privacy-policy-subtitle {
        font-size: 20px;
    }

    .privacy-policy-container {
        padding: 15px;
        padding-top: 120px;
    }
}

/* Smooth Animation for Fade In */
@keyframes privacy-fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* Header styles */
        #header-wrapper {
            width: 100%;
            height: 80px;
            position: fixed;
            left: 0;
            top: 0;
            z-index: 1000; /* Ensure header is above other content */
            transition: all 0.3s ease; /* Smooth transition for color change */
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            background-color: #C7B2DD; /* Background transparan */
        }

        /* Banner styles */
        .bg-wrapper {
            width: 100%;
            height: 500px;
            background-size: cover;
            color: #F0F0F0;
            text-align: center;
            padding-top: 80px; /* Same as header height */
            box-sizing: border-box; /* Ensure padding doesn't add to height */
            position: relative;
            margin-top: 80px; /* Ensure margin is applied if needed */
        }
