/* style/privacy-policy.css */

/* Variables and base styles - assuming shared.css handles body padding-top */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-dark: #26A9E0;
    --login-color: #EA7C07; /* From custom colors */
}

.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--bg-light); /* Explicitly set for content area */
}

.page-privacy-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-privacy-policy__hero-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
    padding-top: 10px; /* Small top padding for visual separation */
    padding-bottom: 60px;
}

.page-privacy-policy__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp as per instruction */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__intro-description {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

.page-privacy-policy__content-area {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.page-privacy-policy__main-image {
    width: 100%;
    max-width: 800px; /* Example max-width for content image */
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.page-privacy-policy__subsection-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-privacy-policy__text-block {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    padding: 0;
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.page-privacy-policy__list-item strong {
    color: var(--primary-color);
}

.page-privacy-policy__list-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* FAQ Styling */
.page-privacy-policy__faq-list {
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.page-privacy-policy__faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 0;
    list-style: none; /* For details/summary */
}

.page-privacy-policy__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-privacy-policy__faq-item summary {
    list-style: none;
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-privacy-policy__faq-answer {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.page-privacy-policy__faq-answer p {
    margin: 0;
}


/* CTA Section */
.page-privacy-policy__cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    border-radius: 8px;
}