.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
}

.page-privacy-policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-privacy-policy-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Gradient to match design style */
}

.page-privacy-policy-hero-image {
    width: 100%;
    height: auto;
    max-height: 400px; /* Adjust as needed */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.page-privacy-policy-hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for main title */
    text-transform: uppercase;
}

.page-privacy-policy-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.page-privacy-policy-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy-section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy-section h2 {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for section titles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-privacy-policy-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-privacy-policy-section h3 {
    font-size: 1.8em;
    color: #FFFFFF; /* White for subheadings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-privacy-policy-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-privacy-policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-privacy-policy-section ul li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
    color: #F0F0F0;
}

.page-privacy-policy-section ul li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

.page-privacy-policy-image-content {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-privacy-policy-faq .faq-list {
    margin-top: 30px;
}

.page-privacy-policy-faq .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy-faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #2A313C; /* Slightly lighter dark for question background */
    border: 1px solid #3A475D;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-privacy-policy-faq .faq-question:hover {
    background: #3A475D;
    border-color: #FFD700;
}

.page-privacy-policy-faq .faq-question h3 {
    margin: 0;
    color: #FFD700; /* Accent color for FAQ questions */
    font-size: 1.3em;
    border-left: none;
    padding-left: 0;
}

.page-privacy-policy-faq .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-privacy-policy-faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-privacy-policy-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #1F2633; /* Darker background for answer */
    color: #E0E0E0;
    padding: 0 20px;
    border-radius: 0 0 8px 8px;
}

.page-privacy-policy-faq .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 20px;
}

.page-privacy-policy-faq .faq-answer p {
    margin-bottom: 0;
    font-size: 1.05em;
}

/* Contact Section */
.page-privacy-policy-contact ul {
    list-style: none;
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
}

.page-privacy-policy-contact ul li {
    background: none;
    margin-bottom: 15px;
    padding: 0;
    font-size: 1.15em;
    color: #F0F0F0;
    justify-content: center;
}

.page-privacy-policy-contact ul li::before {
    content: '';
    margin-right: 0;
}

.page-privacy-policy-button {
    display: block;
    width: fit-content;
    margin: 40px auto 20px auto;
    padding: 18px 40px;
    background: #FFD700; /* Accent color for button */
    color: #1A202C; /* Dark text on accent button */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.page-privacy-policy-button:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy-hero h1 {
        font-size: 3em;
    }
    .page-privacy-policy-section h2 {
        font-size: 2em;
    }
    .page-privacy-policy-section h3 {
        font-size: 1.5em;
    }
    .page-privacy-policy-section p,
    .page-privacy-policy-section ul li {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy-hero {
        padding: 60px 0;
    }
    .page-privacy-policy-hero h1 {
        font-size: 2.5em;
    }
    .page-privacy-policy-hero p {
        font-size: 1em;
    }
    .page-privacy-policy-section {
        padding: 40px 0;
    }
    .page-privacy-policy-section h2 {
        font-size: 1.8em;
    }
    .page-privacy-policy-section h3 {
        font-size: 1.3em;
    }
    .page-privacy-policy-faq .faq-question {
        padding: 15px;
    }
    .page-privacy-policy-faq .faq-question h3 {
        font-size: 1.1em;
    }
    .page-privacy-policy-faq .faq-toggle {
        font-size: 20px;
    }
    .page-privacy-policy-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-privacy-policy-section ul li {
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy-hero h1 {
        font-size: 2em;
    }
    .page-privacy-policy-hero p {
        font-size: 0.9em;
    }
    .page-privacy-policy-section h2 {
        font-size: 1.5em;
    }
    .page-privacy-policy-section h3 {
        font-size: 1.2em;
    }
    .page-privacy-policy-section p,
    .page-privacy-policy-section ul li {
        font-size: 0.95em;
    }
    .page-privacy-policy-faq .faq-question h3 {
        font-size: 1em;
    }
    .page-privacy-policy-faq .faq-toggle {
        font-size: 18px;
    }
    .page-privacy-policy-button {
        width: 90%;
        padding: 12px 25px;
        font-size: 1em;
    }
}