/* style/gdpr.css */

/* Base Styles & Color Scheme */
.page-gdpr {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-gdpr__darker-bg {
  background-color: #11271B; /* Custom Card BG */
  color: #F2FFF6;
}

.page-gdpr__text-secondary {
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-gdpr__text-link {
  color: #57E38D; /* Custom Glow for links */
  text-decoration: underline;
}

.page-gdpr__text-link:hover {
  color: #2AD16F;
}

.page-gdpr__section-title {
  color: #F2FFF6;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__card-title {
  color: #F2C14E; /* Custom Gold */
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 20px;
}

.page-gdpr__text-block {
  margin-bottom: 30px;
  font-size: 1.1em;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  box-sizing: border-box;
}

.page-gdpr__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.page-gdpr__hero-image-container {
  width: 100%;
  max-width: 1200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__hero-text-content {
  text-align: center;
  max-width: 900px;
}

.page-gdpr__main-title {
  color: #F2FFF6;
  font-size: clamp(32px, 5vw, 60px); /* Using clamp for responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-gdpr__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8;
}

/* CTA Buttons */
.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #F2FFF6;
  border: none;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F; /* Custom Button with border */
}

.page-gdpr__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

/* Content Sections */
.page-gdpr__content-section {
  padding: 60px 20px;
  box-sizing: border-box;
}

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

.page-gdpr__card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__image-wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__rights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__final-cta-section {
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-section {
    padding: 40px 15px;
  }

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

  .page-gdpr__card {
    padding: 25px;
  }

  .page-gdpr__principles-grid,
  .page-gdpr__rights-list {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 20px 15px;
    padding-top: 10px !important;
  }

  .page-gdpr__hero-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__main-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .page-gdpr__intro-text {
    font-size: 1em;
  }

  .page-gdpr__section-title {
    font-size: clamp(24px, 7vw, 38px);
    margin-bottom: 30px;
  }

  .page-gdpr__card-title {
    font-size: clamp(20px, 5vw, 28px);
  }

  .page-gdpr__content-section {
    padding: 30px 15px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__principles-grid,
  .page-gdpr__rights-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Mobile image responsiveness */
  .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__section, .page-gdpr__card, .page-gdpr__container, .page-gdpr__hero-content-wrapper, .page-gdpr__image-wrapper, .page-gdpr__principles-grid, .page-gdpr__rights-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile button responsiveness */
  .page-gdpr__cta-button, .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;
  }
  .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;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding: 15px 10px;
    padding-top: 10px !important;
  }

  .page-gdpr__content-section {
    padding: 20px 10px;
  }

  .page-gdpr__card {
    padding: 15px;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(22px, 8vw, 32px);
  }

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