/* style/gdpr.css */

/* --- General Styles --- */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-top: 10px; /* Small top padding for content, body handles --header-offset */
}

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

/* --- Headings --- */
.page-gdpr__heading-main {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-align: center;
}

.page-gdpr__heading-sub {
  font-size: clamp(1.8rem, 3vw, 2.5rem); /* Responsive H2 font size */
  font-weight: 600;
  color: #2AD16F; /* Lighter Green */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__text-block strong {
  color: #F2C14E; /* Gold */
}

.page-gdpr__link-inline {
  color: #2AD16F; /* Lighter Green for links */
  text-decoration: underline;
}

.page-gdpr__link-inline:hover {
  color: #57E38D; /* Glow */
}

/* --- Hero Section --- */
.page-gdpr__hero-section {
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1; /* Ensure text is above potential background elements */
}

.page-gdpr__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(87, 227, 141, 0.2); /* Glow effect */
  z-index: 0; /* Ensure image is below text content if needed, though structure is image-below-text */
}

/* --- Buttons --- */
.page-gdpr__button-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box; /* For mobile responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-gdpr__button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4); /* Glow on hover */
}

/* --- Lists --- */
.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: #A7D9B8; /* Text Secondary */
}

.page-gdpr__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2AD16F; /* Lighter Green */
  font-weight: bold;
}

/* --- Image Content (within sections) --- */
.page-gdpr__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Ensure no image filters */
.page-gdpr img {
  filter: none;
}

/* --- FAQ Section --- */
.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__faq-item summary { /* For details/summary */
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1rem;
  outline: none;
}

.page-gdpr__faq-item summary::-webkit-details-marker { /* Hide default marker */
  display: none;
}

.page-gdpr__faq-item summary .page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] summary .page-gdpr__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  background-color: #0A4B2C; /* Deep Green */
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
}

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

.page-gdpr__faq-answer p:last-child {
  margin-bottom: 0;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px !important; /* body handles --header-offset, small top padding */
  }

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

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

  .page-gdpr__heading-main {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-gdpr__heading-sub {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

  .page-gdpr__hero-content {
    margin-bottom: 30px;
  }

  .page-gdpr__hero-description {
    font-size: 1rem;
  }

  /* All images responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All buttons responsive */
  .page-gdpr__button-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* All containers for mobile responsiveness */
  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Remove padding for elements that already have it from container */
  .page-gdpr__hero-section {
      padding-left: 0 !important;
      padding-right: 0 !important;
  }
  .page-gdpr__hero-content {
      padding-left: 15px;
      padding-right: 15px;
  }
}