/* style/gdpr.css */

/* Custom Colors */
:root {
  --gdpr-card-bg: #11271B;
  --gdpr-background: #08160F;
  --gdpr-text-main: #F2FFF6;
  --gdpr-text-secondary: #A7D9B8;
  --gdpr-border: #2E7A4E;
  --gdpr-glow: #57E38D;
  --gdpr-gold: #F2C14E;
  --gdpr-divider: #1E3A2A;
  --gdpr-deep-green: #0A4B2C;
  --gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr {
  background-color: var(--gdpr-background); /* #08160F */
  color: var(--gdpr-text-main); /* #F2FFF6 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* body handles padding-top, this is for visual spacing */
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for H1 */
  color: var(--gdpr-text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: 1.1em;
  color: var(--gdpr-text-secondary);
  margin-bottom: 30px;
}

.page-gdpr__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button responsiveness */
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: var(--gdpr-button-gradient);
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
}

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

.page-gdpr__btn-secondary {
  background: none;
  color: var(--gdpr-text-main);
  border: 2px solid var(--gdpr-deep-green); /* #0A4B2C */
}

.page-gdpr__btn-secondary:hover {
  background: rgba(var(--gdpr-deep-green), 0.2);
  transform: translateY(-2px);
}

.page-gdpr__content-area,
.page-gdpr__features-section,
.page-gdpr__security-measures,
.page-gdpr__faq-section,
.page-gdpr__contact-section,
.page-gdpr__conclusion-section {
  padding: 60px 0;
}

.page-gdpr__dark-section {
  background-color: var(--gdpr-deep-green); /* #0A4B2C */
  color: var(--gdpr-text-main);
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--gdpr-text-main);
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__section-description {
  font-size: 1.1em;
  color: var(--gdpr-text-secondary);
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__features-grid,
.page-gdpr__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gdpr__feature-card,
.page-gdpr__security-item,
.page-gdpr__faq-item.page-gdpr__card {
  background-color: var(--gdpr-card-bg); /* #11271B */
  border: 1px solid var(--gdpr-border); /* #2E7A4E */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 450px; /* Ensure cards have minimum height for consistent look */
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-height: 200px; /* Minimum image size */
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: var(--gdpr-text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-gdpr__rights-list li {
  background-color: var(--gdpr-card-bg);
  border: 1px solid var(--gdpr-border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--gdpr-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__rights-list li strong {
  color: var(--gdpr-gold); /* #F2C14E */
}

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

.page-gdpr__faq-item {
  margin-bottom: 15px;
  background-color: var(--gdpr-card-bg);
  border: 1px solid var(--gdpr-border);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--gdpr-text-main);
}

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

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--gdpr-gold);
  margin-left: 15px;
}

.page-gdpr__faq-answer {
  padding: 15px 25px 20px;
  border-top: 1px solid var(--gdpr-divider); /* #1E3A2A */
  font-size: 1.05em;
  color: var(--gdpr-text-secondary);
  text-align: left;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: var(--gdpr-text-secondary);
}

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

.page-gdpr__contact-link {
  color: var(--gdpr-gold);
  text-decoration: underline;
}

.page-gdpr__contact-link:hover {
  color: var(--gdpr-glow);
}

/* Ensure all images meet minimum size requirements */
.page-gdpr img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
}

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

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

  .page-gdpr__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-gdpr__hero-image {
    border-radius: 6px;
  }

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

  .page-gdpr__main-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important; /* Force full width */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-gdpr__content-area,
  .page-gdpr__features-section,
  .page-gdpr__security-measures,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section,
  .page-gdpr__conclusion-section {
    padding: 40px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-gdpr__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-gdpr__features-grid,
  .page-gdpr__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__feature-card,
  .page-gdpr__security-item,
  .page-gdpr__faq-item.page-gdpr__card {
    padding: 25px;
    min-height: auto;
  }

  .page-gdpr__card-title {
    font-size: 1.3em;
  }

  .page-gdpr__rights-list li {
    padding: 15px;
    font-size: 1em;
  }

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

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

  .page-gdpr__contact-info {
    font-size: 1em;
  }

  /* Mobile image and video responsive fix */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-gdpr__hero-image {
    min-width: unset !important; /* Allow hero image to shrink */
    min-height: unset !important;
  }

  .page-gdpr__card-image {
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__features-section,
  .page-gdpr__security-measures,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section,
  .page-gdpr__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__features-grid,
  .page-gdpr__security-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}