/* style/gdpr.css */

/* Variables and general styles for the page-gdpr scope */
.page-gdpr {
  --primary-color: #0A192F; /* Deep navy blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: var(--primary-color);
  --background-light: #f9f9f9; /* Light background for content sections */
  --border-color: #e0e0e0;

  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the main page wrapper, assuming body is dark */
  background-color: var(--background-dark); /* Page body background from shared.css */
}

/* --- Hero Section --- */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  padding: 120px 20px 60px; /* Desktop padding-top to clear fixed header */
  background: var(--background-dark);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-gdpr__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Gold title for impact */
  line-height: 1.2;
}

.page-gdpr__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary {
  background: var(--secondary-color); /* Gold background */
  color: var(--primary-color); /* Dark text for contrast */
}

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

.page-gdpr__btn-secondary {
  background: transparent;
  color: var(--secondary-color); /* Gold text */
  border: 2px solid var(--secondary-color);
}

.page-gdpr__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* --- Content Section --- */
.page-gdpr__content-section {
  padding: 60px 20px;
  background: var(--background-light); /* Light background for main content */
  color: var(--text-dark); /* Dark text on light background */
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 25px;
  color: var(--primary-color);
  text-align: center;
}

.page-gdpr__content-section p {
  margin-bottom: 1em;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-gdpr__content-section h2,
.page-gdpr__content-section h3 {
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr__content-section h3 {
  font-size: 1.6em;
  font-weight: 600;
  color: var(--primary-color);
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  padding: 0;
  color: var(--text-dark);
}

.page-gdpr__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--text-dark);
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

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

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__description,
  .page-gdpr__content-section p,
  .page-gdpr__list li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  /* Mobile padding-top to clear fixed header */
  .page-gdpr__hero-section {
    padding-top: 100px !important;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__content-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-gdpr__description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-gdpr__content-section p,
  .page-gdpr__list li {
    font-size: 0.95em;
  }

  .page-gdpr__image {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

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