:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --border-color: #e0e0e0;
    --section-spacing: 60px;
    --mobile-section-spacing: 40px;
    --button-register-bg: #C30808;
    --button-login-bg: #C30808;
    --button-text-yellow: #FFFF00;
}

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

.page-privacy-policy__section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--section-spacing) 20px;
}

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: var(--section-spacing);
    color: var(--text-light);
    background-color: var(--primary-color);
}

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

.page-privacy-policy__hero-image {
    width: 100%;
    margin-top: 30px;
}

.page-privacy-policy__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    filter: none;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.page-privacy-policy__main-title {
    font-size: 2.8em;
    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.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__content-area {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

.page-privacy-policy__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.page-privacy-policy__dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: inherit;
}

.page-privacy-policy__sub-title {
    font-size: 1.6em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: inherit;
}

.page-privacy-policy p {
    margin-bottom: 1em;
    font-size: 1.05em;
}

.page-privacy-policy ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 1em;
}

.page-privacy-policy ul li {
    margin-bottom: 0.5em;
}

.page-privacy-policy a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__dark-section a {
    color: var(--button-text-yellow);
}

.page-privacy-policy a:hover {
    color: #004d29;
}

.page-privacy-policy__dark-section a:hover {
    color: #ffd700;
}

.page-privacy-policy__image-wrapper {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none;
}

.page-privacy-policy__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

details.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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-dark);
    font-size: 1.1em;
    font-weight: 600;
}

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: #f8f8f8;
}

.page-privacy-policy__faq-qtext {
    flex: 1;
    line-height: 1.5;
    text-align: left;
}

.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[open] .page-privacy-policy__faq-toggle {
    color: #C30808;
}

details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
    padding: 0 25px 20px;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
    color: var(--text-dark);
    font-size: 1em;
}

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

@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 15px;
    }

    .page-privacy-policy__section-container {
        padding: var(--mobile-section-spacing) 15px;
    }

    .page-privacy-policy__hero-section {
        padding-top: 10px !important;
        padding-bottom: var(--mobile-section-spacing);
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-privacy-policy__intro-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-privacy-policy__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy p {
        font-size: 0.95em;
    }

    .page-privacy-policy ul {
        margin-left: 20px;
    }

    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        filter: none;
    }

    .page-privacy-policy__image-wrapper {
        margin: 30px auto;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }

    details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-privacy-policy__faq-qtext {
        font-size: 1em;
    }

    .page-privacy-policy__faq-toggle {
        font-size: 20px;
        width: 24px;
        margin-left: 10px;
    }

    .page-privacy-policy__faq-answer {
        padding: 0 20px 15px;
    }

    .page-privacy-policy__cta-button,
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary,
    .page-privacy-policy a[class*="button"],
    .page-privacy-policy a[class*="btn"] {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      white-space: normal !important;
      word-wrap: break-word !important;
      padding-left: 15px;
      padding-right: 15px;
    }
    
    .page-privacy-policy__cta-buttons,
    .page-privacy-policy__button-group,
    .page-privacy-policy__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
    }

    .page-privacy-policy__cta-buttons {
      flex-direction: column;
    }
}