/* style/privacy-policy.css */

:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #DC143C; /* Crimson */
    --dark-background: #1A1A1A;
    --text-light: #E0E0E0;
    --text-dark: #333333;
    --card-background: #2A2A2A;
    --border-color: #444444;
    --button-hover-bg: #E6C200;
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-background);
}

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

.page-privacy-policy .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #222222;
    border-bottom: 2px solid var(--secondary-color);
}

.page-privacy-policy .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-privacy-policy .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-privacy-policy .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

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

.page-privacy-policy .hero-content p {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-privacy-policy .hero-content p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy .hero-content p a:hover {
    text-decoration: underline;
}

.page-privacy-policy .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy .cta-button:hover {
    background: #a81030; /* Darker crimson */
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

.page-privacy-policy h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 15px;
    position: relative;
}

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

.page-privacy-policy h3 {
    font-size: 1.8em;
    color: var(--text-light);
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-privacy-policy p {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-privacy-policy p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy p a:hover {
    text-decoration: underline;
}

.page-privacy-policy ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.page-privacy-policy ul li strong {
    color: var(--primary-color);
}

.page-privacy-policy img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Styles */
.page-privacy-policy .faq-container {
    margin-top: 40px;
}

.page-privacy-policy .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-background);
}

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

.page-privacy-policy .faq-question:hover {
    background: #444444;
}

.page-privacy-policy .faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: var(--primary-color);
    border-left: none;
    padding-left: 0;
}

.page-privacy-policy .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.page-privacy-policy .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    color: var(--text-light);
}

.page-privacy-policy .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 25px 25px 25px;
    background: var(--card-background);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy h1 {
        font-size: 2.8em;
    }
    .page-privacy-policy h2 {
        font-size: 2em;
    }
    .page-privacy-policy h3 {
        font-size: 1.5em;
    }
    .page-privacy-policy .hero-content p {
        font-size: 1.1em;
    }
    .page-privacy-policy .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-privacy-policy .faq-question h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy .hero-section {
        padding: 40px 15px;
    }
    .page-privacy-policy .hero-image img {
        border-radius: 4px;
    }
    .page-privacy-policy h1 {
        font-size: 2.2em;
    }
    .page-privacy-policy h2 {
        font-size: 1.8em;
    }
    .page-privacy-policy h3 {
        font-size: 1.3em;
        padding-left: 10px;
    }
    .page-privacy-policy .hero-content p {
        font-size: 1em;
    }
    .page-privacy-policy .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-privacy-policy ul {
        margin-left: 20px;
    }
    .page-privacy-policy .faq-question {
        padding: 15px 20px;
    }
    .page-privacy-policy .faq-question h3 {
        font-size: 1.1em;
    }
    .page-privacy-policy .faq-toggle {
        font-size: 1.5em;
    }
    .page-privacy-policy .faq-answer {
        padding: 0 20px;
    }
    .page-privacy-policy .faq-item.active .faq-answer {
        padding: 15px 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy h1 {
        font-size: 1.8em;
    }
    .page-privacy-policy h2 {
        font-size: 1.6em;
    }
    .page-privacy-policy h3 {
        font-size: 1.2em;
    }
    .page-privacy-policy .hero-content p {
        font-size: 0.95em;
    }
    .page-privacy-policy .cta-button {
        padding: 8px 20px;
        font-size: 0.85em;
    }
    .page-privacy-policy .faq-question h3 {
        font-size: 1em;
    }
}