/* style/gdpr.css */

/* Base styles for the page-gdpr scope */
.page-gdpr {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f4f7f6; /* Body background from shared.css */
}

/* Specific section backgrounds with light text */
.page-gdpr__hero-section,
.page-gdpr__intro-section.page-gdpr__content-section,
.page-gdpr__contact-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  padding: 60px 20px;
  text-align: center;
}

.page-gdpr__card-section.page-gdpr__content-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 60px 20px;
}

.page-gdpr__header {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-gdpr__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-gdpr__content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f4f7f6; /* Body background */
  color: #333333; /* Dark text for light background */
}

.page-gdpr__content-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: #11A84E; /* Main color */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__content-section h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #22C768; /* Auxiliary color */
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__content-section p {
  margin-bottom: 15px;
}

.page-gdpr__content-section ul,
.page-gdpr__content-section ol {
  list-style-position: inside;
  padding-left: 20px;
  margin-bottom: 15px;
}

.page-gdpr__content-section li {
  margin-bottom: 8px;
}

.page-gdpr__image-container {
  margin: 40px auto;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-gdpr__image-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* FAQ Section */
.page-gdpr__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #08160F; /* Dark background for FAQ */
  color: #F2FFF6; /* Light text */
}

.page-gdpr__faq-section h2 {
  color: #F2FFF6;
}

.page-gdpr__faq-list {
  list-style: none;
  padding: 0;
}

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

.page-gdpr__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  color: #F2FFF6; /* Text Main */
  list-style: none; /* Remove default marker */
}

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

.page-gdpr__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #2AD16F; /* Button color for toggle */
  margin-left: 10px;
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Contact Section */
.page-gdpr__contact-section {
  padding: 60px 20px;
  background-color: #08160F; /* Dark background */
  color: #F2FFF6; /* Light text */
}

.page-gdpr__contact-section h2 {
  color: #F2FFF6;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  font-size: 18px;
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-gdpr__contact-info a {
  color: #2AD16F; /* Link color */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

/* Global image styles */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  .page-gdpr__hero-section,
  .page-gdpr__intro-section.page-gdpr__content-section,
  .page-gdpr__contact-section,
  .page-gdpr__card-section.page-gdpr__content-section,
  .page-gdpr__content-section,
  .page-gdpr__faq-section {
    padding: 30px 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-gdpr__description {
    font-size: 16px;
  }

  .page-gdpr__cta-button {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-gdpr__content-section h2 {
    font-size: clamp(20px, 5vw, 28px);
  }

  .page-gdpr__content-section h3 {
    font-size: clamp(18px, 4.5vw, 24px);
  }

  .page-gdpr__image-container {
    margin: 20px auto;
  }

  /* Image and container responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__hero-section,
  .page-gdpr__intro-section,
  .page-gdpr__card-section,
  .page-gdpr__content-section,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-gdpr__faq-item summary {
    font-size: 16px;
    padding: 15px 20px;
  }

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