/* style/gdpr.css */

/* Base Styles & Typography */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main, for dark background sections */
  background-color: #08160F; /* Background */
}

.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-gdpr__dark-bg {
  background-color: #08160F;
  color: #F2FFF6; /* Light text for dark background */
}

.page-gdpr__section-title,
.page-gdpr__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Responsive H1/H2 font size */
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: #F2FFF6; /* Text Main for titles */
}

.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__light-bg .page-gdpr__card-title {
  color: #000000; /* Black for titles on light background */
}

.page-gdpr__section-text {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__card-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-gdpr__item-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-gdpr a {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
}

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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  min-height: 500px;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image, but not covering */
  color: #F2FFF6;
}

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

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

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

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Grid for Rights */
.page-gdpr__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__feature-card {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__light-bg .page-gdpr__feature-card {
  background-color: #F8F8F8;
  border: 1px solid #e0e0e0;
  color: #333333;
}

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

/* Compliance Details */
.page-gdpr__compliance-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-gdpr__compliance-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__compliance-item .page-gdpr__item-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

/* FAQ Section */
.page-gdpr__faq-section {
  text-align: center;
}

.page-gdpr__faq-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  min-height: 200px;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

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

.page-gdpr__light-bg .page-gdpr__faq-item {
  background-color: #F8F8F8;
  border: 1px solid #e0e0e0;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  font-size: 1.1rem;
}

.page-gdpr__light-bg .page-gdpr__faq-question {
  background-color: #e0e0e0;
  color: #333333;
}

.page-gdpr__faq-question:hover {
  background-color: #11A84E; /* Main color on hover */
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 20px 25px;
  border-top: 1px solid #1E3A2A; /* Divider */
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__light-bg .page-gdpr__faq-answer {
  border-top: 1px solid #e0e0e0;
  color: #333333;
}

/* Contact Section */
.page-gdpr__contact-section {
  text-align: center;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__contact-item {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__contact-link {
  color: #57E38D; /* Glow */
}

/* Buttons */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-gdpr__btn-secondary:hover {
  background: #57E38D;
  color: #08160F; /* Background */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -100px;
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-gdpr__hero-content {
    margin-top: -80px;
    padding: 20px 15px;
  }

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

  .page-gdpr__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__compliance-details {
    grid-template-columns: 1fr;
  }

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

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

  .page-gdpr__card-title {
    font-size: clamp(18px, 4vw, 24px);
  }

  .page-gdpr__item-title {
    font-size: clamp(16px, 3.5vw, 20px);
  }

  /* Images responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-height: 200px !important; /* Ensure minimum size */
  }
  
  /* Video responsiveness (if any) */
  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-gdpr__video-section {
    padding-top: 10px !important;
  }

  /* Button responsiveness */
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; /* Add space between stacked buttons */
  }
  
  .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;
    display: flex;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

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