/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #FFF5E1; /* Main text color for dark body background */
  background-color: #0a0a0a; /* Ensure body background is respected for contrast */
  line-height: 1.6;
}

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

.page-gdpr__container--center {
  text-align: center;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text */
  border-radius: 8px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  color: #FFF5E1;
  margin-bottom: 20px;
  /* clamp for responsive font size without fixed values */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* General Section Styles */
.page-gdpr__section {
  padding: 60px 0;
  background-color: #B71C1C; /* Custom background color */
  margin-bottom: 20px;
}

.page-gdpr__section:nth-child(even) {
  background-color: #7A0E0E; /* Alternate background for visual separation */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD86A; /* Gold-like color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #FFF5E1;
  font-size: 1em;
}

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4D34D; /* Gold checkmark */
  font-weight: bold;
}

.page-gdpr__link {
  color: #F4D34D;
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: #FFD86A;
}

/* Image specific styles */
.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #F2B544; /* Custom border color */
}

.page-gdpr__image--center {
  float: none;
  margin: 30px auto;
}

.page-gdpr__image--right {
  float: right;
  margin: 0 0 20px 30px;
}

.page-gdpr__image--left {
  float: left;
  margin: 0 30px 20px 0;
}

/* Clearfix for floated images */
.page-gdpr__data-protection::after,
.page-gdpr__contact-section::after {
  content: "";
  display: table;
  clear: both;
}

/* CTA Buttons */
.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-gdpr__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom button gradient */
  color: #333333; /* Dark text for light gradient background */
}

.page-gdpr__cta-button--primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
}

.page-gdpr__cta-button--secondary {
  background-color: #C91F17; /* Main brand color */
  color: #ffffff;
  border: 2px solid #F2B544;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #E53935; /* Auxiliary brand color */
  transform: translateY(-2px);
}

.page-gdpr__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* FAQ Section */
.page-gdpr__faq-section {
  background-color: #D32F2F; /* Card BG color */
}

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

.page-gdpr__faq-item {
  background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent dark background for FAQ item */
  border: 1px solid #F2B544;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  color: #FFF5E1;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* Hide default summary marker */
}

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

.page-gdpr__faq-question:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F4D34D;
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  color: #f0f0f0;
  font-size: 0.95em;
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-gdpr__hero-content {
    max-width: 90%;
  }

  .page-gdpr__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
  }

  .page-gdpr__image--right,
  .page-gdpr__image--left {
    float: none;
    margin: 30px auto;
  }

  .page-gdpr__data-protection::after,
  .page-gdpr__contact-section::after {
    clear: both;
  }
}

@media (max-width: 768px) {
  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }

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

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-gdpr__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-gdpr__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .page-gdpr__text-block,
  .page-gdpr__list-item {
    font-size: 0.95em;
  }

  /* Mobile responsive for images */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__hero-image,
  .page-gdpr__image,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Mobile responsive for buttons */
  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    margin: 5px 0;
  }

  .page-gdpr__button-group {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-gdpr__faq-toggle {
    font-size: 1.2em;
  }

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

  /* Video section specific mobile padding */
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is for visual spacing */
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-gdpr__section-title {
    font-size: 1.4em;
  }

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

  .page-gdpr__cta-button {
    font-size: 0.9em;
  }

  .page-gdpr__list-item {
    padding-left: 25px;
  }
}