/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css #121212 */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background-color: #1a1a1a; /* Dark background for hero */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__description {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-gdpr__btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #121212; /* Dark text for gold background */
}

.page-gdpr__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-secondary {
  background-color: #8B0000; /* Dark red button */
  color: #ffffff; /* White text for dark red background */
  border: 2px solid #8B0000;
}

.page-gdpr__btn-secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #2a2a2a; /* Slightly lighter dark background for content */
  color: #f0f0f0;
}

.page-gdpr__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-gdpr__text-block {
  margin-bottom: 40px;
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #f0f0f0;
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #f0f0f0;
}

.page-gdpr__list li strong {
  color: #FFD700;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-gdpr__cta-final {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.page-gdpr__cta-final .page-gdpr__section-title {
  text-align: center;
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 38px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
  .page-gdpr__description, .page-gdpr p, .page-gdpr__list li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }
  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-gdpr__hero-section {
    padding: 60px 0;
  }
  .page-gdpr__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-gdpr__description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px;
    padding: 12px 25px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page-gdpr p, .page-gdpr__list li {
    font-size: 15px;
  }
  .page-gdpr__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 28px;
  }
  .page-gdpr__section-title {
    font-size: 22px;
  }
  .page-gdpr__description {
    font-size: 14px;
  }
  .page-gdpr p, .page-gdpr__list li {
    font-size: 14px;
  }
}

/* Color Contrast Fixes for specific elements if needed */
.page-gdpr__dark-bg {
  color: #ffffff;
}

.page-gdpr__light-bg {
  color: #f0f0f0;
}

.page-gdpr__btn-primary {
  color: #121212; /* Ensure dark text on gold button */
}

.page-gdpr__btn-secondary {
  color: #ffffff; /* Ensure white text on dark red button */
}