:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-background);
    line-height: 1.6;
    padding-bottom: 50px;
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-deep-green);
    padding-bottom: 40px;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.page-gdpr__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
    background: linear-gradient(180deg, var(--color-button-gradient-end) 0%, var(--color-button-gradient-start) 100%);
}

.page-gdpr__section {
    padding: 40px 0;
    border-bottom: 1px solid var(--color-divider);
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

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

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.page-gdpr__text-block {
    font-size: 1rem;
    color: var(--color-text-main);
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__text-block strong {
    color: var(--color-primary);
}

.page-gdpr__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__rights-list,
.page-gdpr__data-list,
.page-gdpr__usage-list,
.page-gdpr__security-list,
.page-gdpr__share-list,
.page-gdpr__cookie-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-gdpr__rights-item,
.page-gdpr__data-item,
.page-gdpr__usage-item,
.page-gdpr__security-item,
.page-gdpr__share-item,
.page-gdpr__cookie-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__rights-subtitle,
.page-gdpr__data-subtitle,
.page-gdpr__security-subtitle,
.page-gdpr__cookie-subtitle {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__usage-item p,
.page-gdpr__share-item p {
    margin-bottom: 0;
}

.page-gdpr__sub-list {
    list-style: disc;
    padding-left: 20px;
    color: var(--color-text-secondary);
}

.page-gdpr__sub-list li {
    margin-bottom: 5px;
}

.page-gdpr__sub-list strong {
    color: var(--color-primary);
}

.page-gdpr a {
    color: var(--color-glow);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr a:hover {
    color: var(--color-gold);
}

.page-gdpr__cta-button--contact {
    margin-top: 20px;
}

.page-gdpr__faq-section {
    padding: 40px 0;
    background-color: var(--color-deep-green);
}

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

.page-gdpr__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
}

.page-gdpr__faq-question::-webkit-details-marker {
    display: none;
}

.page-gdpr__faq-question:hover {
    background-color: rgba(var(--color-primary), 0.1);
}

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-align: justify;
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-gdpr__hero-image {
        max-height: 300px;
    }

    .page-gdpr__hero-content {
        padding: 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-gdpr__hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 20px;
    }

    .page-gdpr__cta-button {
        padding: 10px 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-gdpr__section {
        padding: 30px 0;
    }

    .page-gdpr__container {
        padding: 0 15px;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 20px;
    }

    .page-gdpr__text-block {
        font-size: 0.95rem;
    }

    .page-gdpr__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-gdpr__rights-item,
    .page-gdpr__data-item,
    .page-gdpr__usage-item,
    .page-gdpr__security-item,
    .page-gdpr__share-item,
    .page-gdpr__cookie-item,
    .page-gdpr__faq-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .page-gdpr__rights-subtitle,
    .page-gdpr__data-subtitle,
    .page-gdpr__security-subtitle,
    .page-gdpr__cookie-subtitle {
        font-size: 1.1rem;
    }

    .page-gdpr__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

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

@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .page-gdpr__hero-section {
        padding-top: 10px !important;
    }

    .page-gdpr__cta-button,
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary,
    .page-gdpr a[class*="button"],
    .page-gdpr a[class*="btn"] {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      white-space: normal !important;
      word-wrap: break-word !important;
    }
    
    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      overflow: hidden !important;
      flex-wrap: wrap !important;
      gap: 10px;
    }
    
    .page-gdpr__cta-buttons {
      display: flex;
      flex-direction: column;
    }
}