/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #f8f8f8;
}

.page-gdpr__hero-section {
  background-color: #1E90FF; /* Auxiliary color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-gdpr__main-title {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Primary color for main title */
}

.page-gdpr__description {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700; /* Primary color for CTA button */
  color: #1E90FF; /* Auxiliary color for text to ensure contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--bottom {
  margin-top: 40px;
  background-color: #1E90FF;
  color: #ffffff;
}

.page-gdpr__cta-button--bottom:hover {
  background-color: #1565c0;
}

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

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

.page-gdpr__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #1E90FF; /* Auxiliary color for section titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__content-section p {
  margin-bottom: 20px;
  font-size: 17px;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-gdpr__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-gdpr__image-full {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700; /* Primary color for card titles */
  margin-bottom: 15px;
}

.page-gdpr__card p {
  font-size: 16px;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 0;
}

.page-gdpr__note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: #666666;
}

.page-gdpr__contact-section {
  background-color: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}

.page-gdpr__contact-info {
  font-size: 18px;
  margin-top: 25px;
  line-height: 1.8;
}

.page-gdpr__contact-link {
  color: #1E90FF; /* Auxiliary color for contact links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 38px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
  .page-gdpr__description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-gdpr__main-title {
    font-size: 32px;
  }
  .page-gdpr__description {
    font-size: 16px;
  }
  .page-gdpr__cta-button {
    font-size: 18px;
    padding: 12px 25px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__cta-button--bottom {
    margin-top: 30px;
  }
  .page-gdpr__content-section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .page-gdpr__content-section p,
  .page-gdpr__list li {
    font-size: 15px;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card-title {
    font-size: 20px;
  }
  .page-gdpr__card p {
    font-size: 15px;
  }
  .page-gdpr__contact-info {
    font-size: 16px;
  }
  /* Mobile image adaptation */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 28px;
  }
  .page-gdpr__section-title {
    font-size: 22px;
  }
  .page-gdpr__cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}