/* style/privacy-policy.css */

:root {
    --cmd68-primary: #11A84E;
    --cmd68-secondary: #22C768;
    --cmd68-background: #08160F;
    --cmd68-card-bg: #11271B;
    --cmd68-text-main: #F2FFF6;
    --cmd68-text-secondary: #A7D9B8;
    --cmd68-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --cmd68-border: #2E7A4E;
    --cmd68-glow: #57E38D;
    --cmd68-gold: #F2C14E;
    --cmd68-divider: #1E3A2A;
    --cmd68-deep-green: #0A4B2C;
}

.page-privacy-policy {
    color: var(--cmd68-text-main); /* Main text color for dark background */
    background-color: var(--cmd68-background);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--cmd68-deep-green);
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.3;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    margin: 0 auto;
    color: var(--cmd68-text-main);
}

.page-privacy-policy__main-title {
    color: var(--cmd68-gold);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-privacy-policy__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--cmd68-text-secondary);
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__btn-primary {
    background: var(--cmd68-button-gradient);
    color: var(--cmd68-text-main);
    border: none;
    margin-right: 15px;
}

.page-privacy-policy__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-privacy-policy__btn-secondary {
    background: transparent;
    color: var(--cmd68-primary);
    border: 2px solid var(--cmd68-primary);
}

.page-privacy-policy__btn-secondary:hover {
    background: var(--cmd68-primary);
    color: var(--cmd68-text-main);
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.3);
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--cmd68-background);
    color: var(--cmd68-text-main);
}

.page-privacy-policy__dark-bg {
    background-color: var(--cmd68-background);
    color: var(--cmd68-text-main);
}

.page-privacy-policy__section-title {
    color: var(--cmd68-gold);
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
    padding-top: 20px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-privacy-policy__sub-title {
    color: var(--cmd68-primary);
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid var(--cmd68-gold);
    padding-left: 10px;
}

.page-privacy-policy__text-block {
    margin-bottom: 40px;
    background-color: var(--cmd68-card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--cmd68-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__text-block p {
    margin-bottom: 15px;
    color: var(--cmd68-text-secondary);
}

.page-privacy-policy__text-block ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--cmd68-text-secondary);
}

.page-privacy-policy__text-block ul li {
    margin-bottom: 10px;
}

.page-privacy-policy__text-block strong {
    color: var(--cmd68-text-main);
}

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--cmd68-border);
}

.page-privacy-policy__text-block a {
    color: var(--cmd68-glow);
    text-decoration: underline;
}

.page-privacy-policy__text-block a:hover {
    color: var(--cmd68-gold);
}

.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-privacy-policy__contact-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--cmd68-text-main);
}

.page-privacy-policy__cta-section {
    background: linear-gradient(90deg, var(--cmd68-primary) 0%, var(--cmd68-secondary) 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--cmd68-text-main);
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-title {
    color: var(--cmd68-text-main);
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--cmd68-text-main);
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

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

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

.page-privacy-policy__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--cmd68-text-main);
    background-color: var(--cmd68-deep-green);
    list-style: none;
    position: relative;
}

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

.page-privacy-policy__faq-question .page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--cmd68-gold);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
    transform: rotate(45deg);
}

.page-privacy-policy__faq-answer {
    padding: 20px;
    border-top: 1px solid var(--cmd68-divider);
    color: var(--cmd68-text-secondary);
    background-color: var(--cmd68-card-bg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-privacy-policy__hero-content {
        padding: 15px;
    }
    .page-privacy-policy__main-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-privacy-policy__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        padding: 10px 20px;
        font-size: 0.9em;
        margin-right: 0;
        width: 100% !important;
        margin-bottom: 10px;
    }
    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-privacy-policy__content-area,
    .page-privacy-policy__cta-section,
    .page-privacy-policy__faq-section {
        padding: 40px 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
    }
    .page-privacy-policy__text-block {
        padding: 20px;
        margin-bottom: 30px;
    }
    .page-privacy-policy__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__cta-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-privacy-policy__faq-item summary {
        padding: 15px;
        font-size: 1em;
    }
    .page-privacy-policy__faq-answer {
        padding: 15px;
    }
    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container,
    .page-privacy-policy__hero-section,
    .page-privacy-policy__cta-section,
    .page-privacy-policy__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__cta-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
}