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

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

/* Hero Section */
.page-gdpr__hero {
  position: relative;
  height: 400px; /* Adjusted height for better visual */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #1A202C; /* Fallback */
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
}

.page-gdpr__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.8), rgba(255, 215, 0, 0.3));
  z-index: 2;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto;
}

.page-gdpr__highlight {
  color: #FFD700;
}

/* General Section Styling */
.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #1A202C;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

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

.page-gdpr__introduction p,
.page-gdpr__data-collection p,
.page-gdpr__data-security p,
.page-gdpr__contact p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__bold {
  font-weight: bold;
  color: #1A202C;
}

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

.page-gdpr__list li {
  background-color: #fff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 5px;
  font-size: 1.05em;
  color: #444;
}

.page-gdpr__list-item-title {
  font-weight: bold;
  color: #1A202C;
  display: block;
  margin-bottom: 5px;
}

.page-gdpr__image {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  margin: 30px auto;
  display: block;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-gdpr__contact-info {
  font-size: 1.2em;
  font-weight: bold;
  color: #1A202C;
  margin-bottom: 10px;
  text-align: center;
}

.page-gdpr__link {
  color: #1A202C;
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: #FFD700;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  text-align: center;
  display: block; /* Make button block for centering */
  width: fit-content; /* Adjust width to content */
  margin-left: auto; /* Center button */
  margin-right: auto; /* Center button */
}

.page-gdpr__button:hover {
  background-color: #e6c200;
  color: #000;
}

/* Clear floats */
.page-gdpr__section::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__hero {
    height: 300px;
  }

  .page-gdpr__image {
    float: none;
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }

  .page-gdpr__subtitle {
    font-size: 0.9em;
  }

  .page-gdpr__section-title {
    font-size: 1.5em;
  }

  .page-gdpr__list li {
    font-size: 0.95em;
  }

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-gdpr__hero {
    height: 250px;
  }
}