/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden; /* Ensure no overflow from image */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px; /* Space between image and content */
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  width: 100%; /* Ensure content takes full width up to max-width */
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em); /* Use clamp for H1 */
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

.page-gdpr__cta-button--bottom {
    margin-top: 40px;
}

/* General Section Styles */
.page-gdpr__section {
  padding: 40px 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  background-color: #11271B; /* Card BG for sections */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__dark-section {
    background-color: #0A4B2C; /* Deep Green, slightly darker for contrast */
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Inner padding for content */
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__text-block {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__list-item {
  background-color: rgba(17, 168, 78, 0.1); /* Lighter green tint */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #F2FFF6; /* Text Main */
  display: flex;
  align-items: flex-start;
  font-size: 1em;
  border-left: 4px solid #2AD16F; /* Deep Green */
}

.page-gdpr__list-item strong {
    color: #F2C14E; /* Gold for emphasis */
}

.page-gdpr__list-item::before {
  content: '✓';
  color: #57E38D; /* Glow */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

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

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

.page-gdpr__faq-item {
  background-color: rgba(17, 168, 78, 0.05); /* Slightly transparent green */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-item summary {
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(17, 168, 78, 0.1);
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary:hover {
  background-color: rgba(17, 168, 78, 0.2);
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  content: '−'; /* Change to minus when open (handled by JS for robustness) */
}

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  text-align: justify;
}

.page-gdpr__faq-answer p {
    margin-bottom: 0; /* Remove extra margin for paragraphs in FAQ */
}

/* Conclusion Section */
.page-gdpr__conclusion-section {
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__conclusion-section .page-gdpr__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr a {
    color: #57E38D; /* Glow color for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr a:hover {
    color: #F2C14E; /* Gold on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already has padding-top */
  }

  .page-gdpr__main-title {
    font-size: 2.2em; /* Adjusted for mobile */
  }

  .page-gdpr__description {
    font-size: 1em;
  }

  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Space between multiple buttons if any */
  }

  .page-gdpr__section {
    padding: 30px 15px;
    margin-bottom: 20px;
  }

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

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

  .page-gdpr__list-item {
    font-size: 0.95em;
    padding: 12px 15px;
  }

  .page-gdpr__faq-item summary {
    padding: 15px;
    font-size: 1em;
  }

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

  /* Image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers with images/videos/buttons must be responsive */
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__content-area,
  .page-gdpr__section,
  .page-gdpr__faq-section,
  .page-gdpr__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px; /* Add padding to prevent content touching edges */
    padding-right: 15px;
  }

  /* Specific fix for hero content inner padding */
  .page-gdpr__hero-content {
    padding: 0;
  }

  /* Ensure button containers also wrap */
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__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;
  }
}