.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background: #140C0C; /* Background */
  word-wrap: break-word;
}

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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px;
  background: linear-gradient(180deg, #7E0D0D 0%, #140C0C 100%);
  border-bottom: 2px solid #6A1E1E;
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
  border: 1px solid #6A1E1E;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-gdpr__main-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-gdpr__subtitle {
  font-size: 1.2rem;
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, #FFC06A 0%, #E87A24 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-gdpr__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #2A1212;
}

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

.page-gdpr__section-title {
  font-size: 2.2rem;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.page-gdpr p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #FFF1E8;
  text-align: justify;
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF1E8;
}

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

.page-gdpr__list-item strong {
  color: #F3C54D; /* Gold */
}

.page-gdpr__link {
  color: #FFB04A;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.page-gdpr__card {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF1E8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-gdpr__card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  border: 1px solid #6A1E1E;
}

.page-gdpr__card-title {
  font-size: 1.5rem;
  color: #FFB04A;
  margin-bottom: 15px;
}

.page-gdpr__contact-info {
  background: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #FFF1E8;
}

.page-gdpr__contact-info strong {
  color: #F3C54D;
}

.page-gdpr__faq-section {
  padding: 60px 0;
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #6A1E1E;
  overflow: hidden;
  background: #2A1212; /* Card BG */
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #FFF1E8;
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
  background: #3A1A1A;
  color: #F3C54D;
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF1E8;
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover .page-gdpr__faq-qtext {
  color: #F3C54D;
}

.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-gdpr__faq-item[open] summary.page-gdpr__faq-question {
  background: #3A1A1A;
  color: #F3C54D;
  border-bottom: 1px solid #6A1E1E;
}

details.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  color: #F3C54D;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 25px 25px;
  background: #1F0F0F;
  border-radius: 0 0 8px 8px;
  color: #FFF1E8;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer p {
  margin-bottom: 0;
  text-align: justify;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.5rem;
  }
  .page-gdpr__section-title {
    font-size: 2rem;
  }
  .page-gdpr__card-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-image {
    border-radius: 4px;
    margin-bottom: 20px;
  }
  .page-gdpr__hero-content {
    padding: 0 10px;
  }
  .page-gdpr__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .page-gdpr__subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-gdpr p,
  .page-gdpr__list-item,
  .page-gdpr__card p,
  .page-gdpr__contact-info p {
    font-size: 0.95rem;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__card-title {
    font-size: 1.3rem;
  }
  .page-gdpr__contact-info {
    padding: 20px;
  }
  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px 20px;
  }
  .page-gdpr__faq-qtext {
    font-size: 1rem;
  }
  .page-gdpr__faq-toggle {
    font-size: 20px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 20px;
  }
  /* Ensure all images are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__contact-info {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.7rem;
  }
  .page-gdpr__section-title {
    font-size: 1.5rem;
  }
  .page-gdpr__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
  .page-gdpr__list-item {
    font-size: 0.9rem;
  }
  .page-gdpr__faq-qtext {
    font-size: 0.95rem;
  }
}