.page-gdpr {
  background-color: #0A0A0A;
  color: #FFF6D6;
  padding: 10px 15px 40px;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 10px; /* Small top padding as per rules */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.page-gdpr__hero-content {
  max-width: 800px;
  padding: 0 15px;
}

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E;
}

.page-gdpr__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-gdpr__contact-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

.page-gdpr__section {
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 30px;
  background-color: #111111;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
}

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #FFD36B;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

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

.page-gdpr__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #FFF6D6;
  text-align: justify;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 25px auto;
  object-fit: cover;
  object-position: center;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__list,
.page-gdpr__ordered-list {
  list-style-type: disc;
  margin: 20px 0 20px 20px;
  padding: 0;
  color: #FFF6D6;
}

.page-gdpr__ordered-list {
  list-style-type: decimal;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-gdpr__blockquote {
  border-left: 4px solid #F2C14E;
  padding: 15px 20px;
  margin: 25px 0;
  background-color: #1c1c1c;
  border-radius: 4px;
  color: #FFD36B;
  font-style: italic;
}

.page-gdpr__blockquote p {
  margin: 0;
  color: #FFD36B;
}

.page-gdpr__contact-button--bottom {
  margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-gdpr {
    padding: 10px 10px 30px;
  }

  .page-gdpr__hero-section {
    margin-bottom: 30px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-gdpr__intro-text {
    font-size: 1rem;
  }

  .page-gdpr__contact-button {
    padding: 10px 20px;
  }

  .page-gdpr__section {
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  .page-gdpr__paragraph {
    font-size: 0.95rem;
    text-align: left;
  }

  .page-gdpr__image {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__list,
  .page-gdpr__ordered-list {
    margin-left: 15px;
  }

  .page-gdpr__list-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .page-gdpr__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .page-gdpr__section {
    padding: 15px;
  }
}