.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #333333;
    line-height: 1.6;
}

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

.page-privacy-policy-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #007BFF; /* Fallback for image loading */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-privacy-policy-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.6);
}

.page-privacy-policy-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    max-width: 800px;
}

.page-privacy-policy-hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy-hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-privacy-policy-cta-button {
    display: inline-block;
    background-color: #FF4500;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy-cta-button:hover {
    background-color: #e03c00;
    transform: translateY(-2px);
}

.page-privacy-policy-section {
    padding: 60px 0;
    border-bottom: 1px solid #eeeeee;
}

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

.page-privacy-policy-section h2 {
    font-size: 2.2em;
    color: #FF4500;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-privacy-policy-section h2 .highlight {
    color: #007BFF;
}

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

.page-privacy-policy-section h3 {
    font-size: 1.6em;
    color: #007BFF;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-privacy-policy-section p {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.8;
}

.page-privacy-policy-section ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-privacy-policy-section ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy-section ul li strong {
    color: #FF4500;
}

.page-privacy-policy-content-block {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy-image-inline {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section Specific Styles */
.page-privacy-policy-faq {
    background-color: #f0f8ff;
    padding: 60px 0;
}

.page-privacy-policy-faq h2 {
    color: #007BFF;
    margin-bottom: 40px;
}

.page-privacy-policy-faq h2::after {
    background-color: #007BFF;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e8e8e8;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: #333333;
}

.faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #FF4500;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #007BFF;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
}

.faq-answer p {
    margin-bottom: 0;
    color: #555555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy-hero-content h1 {
        font-size: 2.5em;
    }

    .page-privacy-policy-hero-content p {
        font-size: 1em;
    }

    .page-privacy-policy-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-privacy-policy-section h2 {
        font-size: 1.8em;
    }

    .page-privacy-policy-section h3 {
        font-size: 1.4em;
    }

    .page-privacy-policy-section p,
    .page-privacy-policy-section ul li {
        font-size: 0.95em;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1.1em;
    }

    .faq-toggle {
        font-size: 1.5em;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

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

    .page-privacy-policy-hero-content p {
        font-size: 0.9em;
    }

    .page-privacy-policy-cta-button {
        padding: 10px 20px;
        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.9em;
    }

    .faq-question h3 {
        font-size: 1em;
    }

    .faq-toggle {
        font-size: 1.3em;
    }
}