/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2239; /* Main dark blue background */
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1A3F5E 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-description {
  font-size: 1.3em;
  color: #C0C0C0; /* Lighter grey for description */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section {
  padding: 60px 0;
  text-align: left;
}

.page-gdpr__section--alt-bg {
  background-color: #0F2D4A; /* Slightly lighter dark blue for alternating sections */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-gdpr__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-gdpr__text--small {
  font-size: 0.9em;
  text-align: center;
  margin-top: 30px;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__list li {
  background-color: #1A3F5E; /* Dark blue for list items */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 60px;
}

.page-gdpr__list li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  font-size: 1.5em;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.page-gdpr__list-item-title {
  font-weight: bold;
  color: #FFD700; /* Gold for list item titles */
  margin-bottom: 5px;
  font-size: 1.2em;
}

.page-gdpr__list li p {
  margin: 0;
  color: #E0E0E0;
}

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

.page-gdpr__grid-item {
  background-color: #1A3F5E; /* Dark blue for grid items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__grid-item-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for grid item titles */
  margin-bottom: 15px;
}

.page-gdpr__grid-item p {
  color: #C0C0C0;
  line-height: 1.6;
}

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

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  max-width: 45%;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  max-width: 45%;
}

.page-gdpr__section:nth-child(even) .page-gdpr__image--right,
.page-gdpr__section:nth-child(odd) .page-gdpr__image--left {
  clear: both; /* Clear float for responsive layout */
  float: none;
  max-width: 100%;
}

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

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

.page-gdpr__btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-top: 20px;
}

.page-gdpr__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-2px);
}

.page-gdpr__link {
  color: #FFD700; /* Gold link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #E6C200; /* Slightly darker gold on hover */
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__image--right,
  .page-gdpr__image--left {
    float: none;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text,
  .page-gdpr__list li p,
  .page-gdpr__grid-item p {
    font-size: 1em;
  }
  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.95em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__list li {
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .page-gdpr__list li::before {
    display: none;
  }
  .page-gdpr__list-item-title {
    font-size: 1.1em;
  }
  .page-gdpr__btn {
    width: 100%;
    box-sizing: border-box;
  }
}