/* style/gdpr.css */

/* Base Styles & Typography */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3 {
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-gdpr h1 {
  font-size: 2.8em;
  text-align: center;
}

.page-gdpr h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
}

.page-gdpr h3 {
  font-size: 1.6em;
  margin-top: 25px;
}

.page-gdpr p {
  margin-bottom: 1em;
  color: #f0f0f0; /* Light text for readability on dark background */
}

.page-gdpr a {
  color: #26A9E0;
  text-decoration: none;
}

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

/* Container & Section Layout */
.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__section {
  padding: 60px 0;
  overflow: hidden;
}

.page-gdpr__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-gdpr__light-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-gdpr__section-title {
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-gdpr__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Hero Section */
.page-gdpr__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a; /* Fallback */
}

.page-gdpr__hero-section .page-gdpr__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.page-gdpr__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-align: left;
  color: #FFFFFF;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-align: left;
}

.page-gdpr__hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__hero-image-wrapper {
  flex: 1;
  min-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-gdpr__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
  text-decoration: none;
}

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
  text-decoration: none;
}

/* Text Blocks & Content Images */
.page-gdpr__text-block {
  margin-bottom: 40px;
}

.page-gdpr__content-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);
}

/* Principles Section */
.page-gdpr__principles-section .page-gdpr__section-title,
.page-gdpr__principles-section .page-gdpr__section-description {
  color: #FFFFFF;
}

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

.page-gdpr__dark-bg-card {
  background-color: rgba(38, 169, 224, 0.1);
  border: 1px solid #26A9E0;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-gdpr__dark-bg-card .page-gdpr__card-title {
  color: #26A9E0;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-gdpr__dark-bg-card p {
  color: #f0f0f0;
}

/* Rights List */
.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-gdpr__rights-list .page-gdpr__list-item {
  background-color: rgba(38, 169, 224, 0.05);
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  color: #ffffff;
}

.page-gdpr__rights-list .page-gdpr__list-title {
  color: #26A9E0;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__rights-list p {
  color: #f0f0f0;
}

/* Security List */
.page-gdpr__security-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 30px;
  color: #f0f0f0;
}

.page-gdpr__security-list .page-gdpr__list-item {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-gdpr__security-list .page-gdpr__list-item strong {
  color: #26A9E0;
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: rgba(38, 169, 224, 0.1);
  border: 1px solid #26A9E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.15);
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: rgba(38, 169, 224, 0.25);
}

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

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

.page-gdpr__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-gdpr__faq-answer p {
  margin-top: 0;
  margin-bottom: 15px;
  color: #f0f0f0;
}

/* Contact Section */
.page-gdpr__contact-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  color: #f0f0f0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section .page-gdpr__container {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__hero-content {
    text-align: center;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
    text-align: center;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
    text-align: center;
  }
  .page-gdpr__hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr h3 {
    font-size: 1.2em;
  }
  .page-gdpr__grid-container {
    grid-template-columns: 1fr;
  }
  .page-gdpr__content-image,
  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__hero-image-wrapper,
  .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;
    overflow: hidden !important;
  }
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header on mobile */
  }
  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px;
  }
  .page-gdpr__faq-item.active .page-gdpr__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.4em;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    font-size: 1em;
    padding: 12px 20px;
  }
}