/* style/privacy-policy.css */
:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    --card-bg: #17191F;
    --body-bg: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

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

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
}

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

.page-privacy-policy__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    background: rgba(23, 25, 31, 0.85); /* Card BG with transparency */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.page-privacy-policy__main-title {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
    background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), 0 0 15px var(--glow-color);
}

.page-privacy-policy__content-section {
    padding: 60px 20px;
    background-color: var(--body-bg);
    color: var(--text-main);
}

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

.page-privacy-policy__section-title {
    font-size: clamp(24px, 3.5vw, 38px);
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

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

.page-privacy-policy__sub-title {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-privacy-policy__text-block {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-main);
}

.page-privacy-policy__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-privacy-policy__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--text-main);
}

.page-privacy-policy__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
    top: 2px;
}

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

/* FAQ Section */
.page-privacy-policy__faq-list {
    margin-top: 40px;
    margin-bottom: 60px;
}

details.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main);
}

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

details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question:hover {
    background: rgba(255, 140, 26, 0.1);
}

.page-privacy-policy__faq-qtext {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--secondary-color);
}

.page-privacy-policy__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
    padding: 0 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 8px 8px;
    font-size: 16px;
    color: var(--text-main);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-content {
        padding: 15px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(24px, 3.5vw, 40px);
    }
    .page-privacy-policy__hero-description {
        font-size: clamp(15px, 1.8vw, 18px);
    }
    .page-privacy-policy__section-title {
        font-size: clamp(22px, 3vw, 34px);
    }
    .page-privacy-policy__sub-title {
        font-size: clamp(18px, 2.2vw, 24px);
    }
    .page-privacy-policy__text-block, .page-privacy-policy__list-item {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__hero-image img {
        border-radius: 8px;
    }
    .page-privacy-policy__hero-content {
        border-radius: 8px;
    }
    .page-privacy-policy__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-privacy-policy__content-section {
        padding: 40px 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-title {
        font-size: 22px;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    .page-privacy-policy__text-block, .page-privacy-policy__list-item {
        font-size: 15px;
    }
    .page-privacy-policy__list-item::before {
        top: 0px;
    }
    .page-privacy-policy__image {
        margin: 20px auto;
        border-radius: 6px;
    }
    details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
        padding: 15px;
    }
    .page-privacy-policy__faq-qtext {
        font-size: 16px;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 20px;
        width: 24px;
    }
    details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
        padding: 0 15px 15px;
        font-size: 15px;
    }
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-privacy-policy__section, .page-privacy-policy__card, .page-privacy-policy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-privacy-policy__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 26px;
    }
    .page-privacy-policy__hero-description {
        font-size: 14px;
    }
    .page-privacy-policy__cta-button {
        font-size: 15px;
        padding: 10px 25px;
    }
    .page-privacy-policy__section-title {
        font-size: 24px;
    }
    .page-privacy-policy__sub-title {
        font-size: 20px;
    }
    .page-privacy-policy__text-block, .page-privacy-policy__list-item {
        font-size: 14px;
    }
    .page-privacy-policy__faq-qtext {
        font-size: 15px;
    }
    .page-privacy-policy__faq-toggle {
        font-size: 18px;
    }
}