/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light gray for main text on dark background */
  background-color: #0A2342; /* Dark blue background */
}

.page-gdpr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr-hero {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-gdpr-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr-hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

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

.page-gdpr-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr-section:last-of-type {
  border-bottom: none;
}

.page-gdpr-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr-intro p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.page-gdpr-image-text-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-gdpr-image-text-layout:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image/text order */
}

.page-gdpr-text-content {
  flex: 1;
  min-width: 300px;
}

.page-gdpr-image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-gdpr-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr-list li {
  background-color: #1a3a60; /* Slightly lighter dark blue */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-gdpr-list li:before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-gdpr-list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-gdpr-list-columns li {
  margin-bottom: 0;
}

.page-gdpr-icon-check {
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
}

.page-gdpr-icon-check::before {
  content: '✔';
}

.page-gdpr-image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

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

.page-gdpr-right-item {
  background-color: #1a3a60;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr-right-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr-image-centered {
  display: block;
  margin: 40px auto 0;
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr-contact {
  text-align: center;
}

.page-gdpr-contact p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-gdpr-link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr-link:hover {
  color: #ffd000;
  text-decoration: underline;
}

.page-gdpr-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr-btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold button */
  border: 2px solid #FFD700;
}

.page-gdpr-btn-primary:hover {
  background-color: #ffd000;
  color: #000;
  border-color: #ffd000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr-hero {
    padding: 60px 0;
  }

  .page-gdpr-hero-title {
    font-size: 2.5em;
  }

  .page-gdpr-hero-subtitle {
    font-size: 1em;
  }

  .page-gdpr-section {
    padding: 40px 0;
  }

  .page-gdpr-section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-gdpr-image-text-layout {
    flex-direction: column;
  }

  .page-gdpr-image-text-layout:nth-child(even) {
    flex-direction: column; /* Reset alternating order for small screens */
  }

  .page-gdpr-rights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero-title {
    font-size: 2em;
  }

  .page-gdpr-section-title {
    font-size: 1.8em;
  }

  .page-gdpr-list li {
    padding: 12px 15px;
  }

  .page-gdpr-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}