.page-privacy-policy {
    padding-top: 120px; /* Desktop: Adjust for fixed header */
    color: #333333; /* Default text color for light backgrounds */
}

@media (max-width: 768px) {
    .page-privacy-policy {
        padding-top: 100px; /* Mobile: Adjust for fixed header */
    }
}

/* Hero Banner Section (for this page, not homepage HERO) */
.page-privacy-policy__hero-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Using brand colors */
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-privacy-policy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.page-privacy-policy__hero-image {
    max-width: 600px; /* Ensuring it's large enough, but not full width */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Content Section */
.page-privacy-policy__content-section {
    padding: 60px 20px;
    background: #ffffff; /* Light background for main content */
    color: #333333; /* Dark text for contrast */
}

.page-privacy-policy__content-container {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 16px;
}

.page-privacy-policy__introduction {
    font-size: 1.15em;
    margin-bottom: 30px;
    text-align: justify;
    font-weight: 500;
}

.page-privacy-policy__heading-2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 45px;
    margin-bottom: 25px;
    font-weight: bold;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.page-privacy-policy__heading-3 {
    font-size: 1.6em;
    color: #000000;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-privacy-policy__content-section p {
    margin-bottom: 15px;
    text-align: justify;
}

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    text-align: justify;
}

.page-privacy-policy__sub-list {
    list-style-type: circle;
    margin-left: 20px;
    margin-top: 5px;
}

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

.page-privacy-policy__link:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.page-privacy-policy__keyword {
    font-weight: bold;
    color: var(--primary-color);
}

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

.page-privacy-policy__call-to-action {
    text-align: center;
    font-size: 1.2em;
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-privacy-policy__cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), #003d80); /* Darker gradient for primary button */
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-privacy-policy__cta-button:hover {
    background: linear-gradient(135deg, var(--secondary-color), #cc8a00); /* Gradient to secondary color on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    padding: 60px 20px;
    background: #f9f9f9; /* Slightly off-white background for FAQ */
    color: #333333;
}

.page-privacy-policy__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__faq-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: bold;
}

.page-privacy-policy__faq-list {
    margin-top: 30px;
}

.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    color: #555555;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 2000px !important; /* Sufficiently large for content */
    padding: 20px 15px !important;
    opacity: 1;
    background: #f0f0f0; /* Slightly darker than section background for contrast */
    border-radius: 0 0 5px 5px;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-privacy-policy__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-privacy-policy__faq-question:active {
    background: #eeeeee;
}

.page-privacy-policy__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px; /* Slightly larger for readability */
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: #333333;
}

.page-privacy-policy__faq-toggle {
    font-size: 28px; /* Larger for better tap target */
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color); /* Using brand color for toggle */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
    color: var(--secondary-color); /* Secondary color when active */
    transform: rotate(45deg); /* Rotate for 'x' effect */
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__hero-subtitle {
        font-size: 1.2em;
    }
    .page-privacy-policy__heading-2 {
        font-size: 2em;
    }
    .page-privacy-policy__heading-3 {
        font-size: 1.5em;
    }
    .page-privacy-policy__content-container {
        font-size: 15px;
    }
    .page-privacy-policy__faq-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__faq-question h3 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-banner {
        padding: 40px 15px;
    }
    .page-privacy-policy__hero-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__hero-subtitle {
        font-size: 1em;
    }
    .page-privacy-policy__content-section,
    .page-privacy-policy__faq-section {
        padding: 30px 15px;
    }
    .page-privacy-policy__heading-2 {
        font-size: 1.8em;
        margin-top: 35px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__heading-3 {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-privacy-policy__content-container {
        font-size: 14px;
    }
    .page-privacy-policy__list {
        margin-left: 15px;
    }
    .page-privacy-policy__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-privacy-policy__faq-title {
        font-size: 2em;
    }
    .page-privacy-policy__faq-question {
        padding: 15px;
    }
    .page-privacy-policy__faq-question h3 {
        font-size: 16px;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 15px !important;
    }
}