.page-gdpr {
  background: #08160F;
  color: #F2FFF6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr__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 */
  background: linear-gradient(180deg, rgba(17, 168, 78, 0.2) 0%, rgba(8, 22, 15, 0.8) 100%);
  overflow: hidden;
}

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

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

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.page-gdpr__hero-image img:hover {
  transform: scale(1.02);
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__content-section {
  padding: 50px 0;
}

.page-gdpr__content-area {
  background: #08160F;
  color: #F2FFF6;
}

.page-gdpr__dark-section {
  background: #11271B;
  color: #F2FFF6;
}

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

.page-gdpr__section-title {
  font-size: clamp(24px, 3vw, 38px);
  color: #F2FFF6;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #22C768;
  border-radius: 2px;
}

.page-gdpr__section-title--light {
  color: #F2FFF6;
}

.page-gdpr__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #22C768;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-gdpr__sub-title--light {
  color: #57E38D;
}

.page-gdpr__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-gdpr__text-block--light {
  color: #F2FFF6;
}

.page-gdpr__text-block--note {
  font-style: italic;
  color: #F2C14E;
  padding: 15px;
  border-left: 4px solid #F2C14E;
  background: rgba(242, 193, 78, 0.1);
  border-radius: 4px;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8;
  font-size: 17px;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-gdpr__list strong {
  color: #F2FFF6;
}

.page-gdpr__list--light {
  color: #F2FFF6;
}

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

.page-gdpr__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-gdpr__card-section {
  background: #0A4B2C;
  padding-bottom: 60px;
}

.page-gdpr__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-gdpr__card {
  background: #11271B;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E;
  color: #A7D9B8;
}

.page-gdpr__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__card-title {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  text-align: center;
}

.page-gdpr__contact-info p {
  margin-bottom: 15px;
  font-size: 18px;
  color: #F2FFF6;
}

.page-gdpr__contact-link {
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #57E38D;
  text-decoration: underline;
}

.page-gdpr__faq-section {
  background: #08160F;
  padding-bottom: 60px;
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  overflow: hidden;
  background: #11271B;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-gdpr__faq-item summary.page-gdpr__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: #F2FFF6;
  font-size: 18px;
  font-weight: 600;
}

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

details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
  background: #1E3A2A;
}

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

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2AD16F;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
  color: #57E38D;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 25px 20px;
  background: #0A4B2C;
  border-radius: 0 0 10px 10px;
  color: #A7D9B8;
  font-size: 16px;
  line-height: 1.7;
}

.page-gdpr__faq-answer p {
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-image {
    margin-bottom: 20px;
  }
  .page-gdpr__main-title {
    font-size: clamp(26px, 3.5vw, 40px);
  }
  .page-gdpr__hero-description {
    font-size: clamp(15px, 1.7vw, 18px);
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-gdpr__section-title {
    font-size: clamp(22px, 2.8vw, 34px);
  }
  .page-gdpr__sub-title {
    font-size: clamp(18px, 2.2vw, 24px);
  }
  .page-gdpr__text-block, .page-gdpr__list li, .page-gdpr__card-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-image img {
    border-radius: 8px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__hero-content {
    padding: 0 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
  }
  .page-gdpr__hero-description {
    font-size: clamp(14px, 3.5vw, 16px);
    margin-bottom: 25px;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section-title {
    font-size: clamp(20px, 6vw, 30px);
    margin-bottom: 25px;
  }
  .page-gdpr__sub-title {
    font-size: clamp(18px, 5vw, 22px);
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-gdpr__text-block, .page-gdpr__list li, .page-gdpr__card-text {
    font-size: 15px;
    line-height: 1.6;
  }
  .page-gdpr__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-image {
    max-width: 120px;
  }
  .page-gdpr__card-title {
    font-size: 20px;
  }
  .page-gdpr__contact-info p {
    font-size: 16px;
  }
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 15px;
    font-size: 15px;
  }
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding-bottom: 30px;
  }
  .page-gdpr__main-title {
    font-size: clamp(22px, 8vw, 30px);
  }
  .page-gdpr__hero-description {
    font-size: clamp(14px, 4vw, 15px);
  }
  .page-gdpr__cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }
  .page-gdpr__section-title {
    font-size: clamp(18px, 7vw, 26px);
  }
  .page-gdpr__sub-title {
    font-size: clamp(16px, 6vw, 20px);
  }
  .page-gdpr__text-block, .page-gdpr__list li, .page-gdpr__card-text {
    font-size: 14px;
  }
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    font-size: 15px;
    padding: 12px 15px;
  }
  .page-gdpr__faq-toggle {
    font-size: 22px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 15px 12px;
  }
}