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

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

.page-privacy-policy-hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-privacy-policy-hero p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #eee;
}

.page-privacy-policy-cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy-cta-button:hover {
    background-color: #FFC700; /* Slightly lighter gold */
    color: #6A0000; /* Slightly darker red */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy-section {
    padding: 40px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy-section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-privacy-policy-section h2 {
    font-size: 2.2em;
    color: #8B0000; /* Dark Red */
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

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

.page-privacy-policy-section h3 {
    font-size: 1.6em;
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700; /* Gold */
    padding-left: 10px;
}

.page-privacy-policy-section p {
    margin-bottom: 15px;
    color: #444;
}

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

.page-privacy-policy-section li {
    margin-bottom: 10px;
    color: #444;
}

.page-privacy-policy-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* FAQ Styles */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background-color: #FFC700; /* Slightly lighter gold */
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15em;
    color: #8B0000; /* Dark Red */
    border-left: none;
    padding-left: 0;
}

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

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

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

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 20px;
    border-top: 1px solid #eee;
}

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

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

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

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

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

    .faq-question {
        padding: 15px;
    }

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

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

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

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

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

    .page-privacy-policy-cta-button {
        padding: 12px 25px;
        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-container {
        padding: 15px;
    }

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