/* style/gdpr.css */

/* BEM Naming: page-gdpr__element-name */
/* Colors: #08160F (Background), #11271B (Card BG), #F2FFF6 (Text Main), #A7D9B8 (Text Secondary), Button Gradient (linear-gradient(180deg, #2AD16F 0%, #13994A 100%)) */

.page-gdpr {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr strong.page-gdpr__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

.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;
  min-height: 600px;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Minimal top padding */
  background-color: #08160F;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: #0A4B2C; /* Deep Green for contrast */
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-gdpr__intro-text {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button Gradient */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__light-bg {
  background-color: #0A4B2C; /* Deep Green, lighter than main bg for contrast */
  color: #F2FFF6; /* Text Main */
  padding: 80px 0;
}

.page-gdpr__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  padding: 80px 0;
}

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

.page-gdpr__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

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

.page-gdpr__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #57E38D; /* Glow */
}

.page-gdpr__card p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-gdpr__right-item.page-gdpr__card {
  background-color: #11271B; /* Card BG */
}

.page-gdpr__measures-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.page-gdpr__measures-image {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__measures-image img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 200px; /* Minimum size */
}

.page-gdpr__measures-text {
  flex: 2;
  min-width: 300px;
}

.page-gdpr__measures-text ul {
  list-style: none;
  padding: 0;
}

.page-gdpr__measures-text li {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  border-left: 5px solid #57E38D; /* Glow */
}

.page-gdpr__measures-text li strong {
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__faq-section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-gdpr__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-gdpr__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #1E3A2A; /* Divider, slightly lighter for summary */
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 20px 25px;
  background-color: #11271B; /* Card BG */
  border-top: 1px solid #1E3A2A; /* Divider */
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__contact-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0A4B2C;
}

.page-gdpr__contact-info {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-gdpr__contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__contact-link {
  color: #57E38D; /* Glow */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-gdpr__btn-secondary:hover {
  background-color: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    padding: 30px 15px;
  }
  .page-gdpr__principles-grid,
  .page-gdpr__rights-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .page-gdpr__measures-content {
    flex-direction: column-reverse;
  }
  .page-gdpr__measures-image {
    order: 1;
    max-width: 100%;
  }
  .page-gdpr__measures-text {
    order: 2;
    max-width: 100%;
  }
  .page-gdpr__section-title {
    margin-bottom: 20px;
  }
  .page-gdpr__section-description {
    margin-bottom: 30px;
  }
  .page-gdpr__light-bg, .page-gdpr__dark-bg {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__measures-section,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section,
  .page-gdpr__hero-content,
  .page-gdpr__principles-grid,
  .page-gdpr__rights-list,
  .page-gdpr__measures-content,
  .page-gdpr__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    min-height: auto;
  }
  .page-gdpr__main-title {
    font-size: 2rem;
  }
  .page-gdpr__intro-text {
    font-size: 1rem;
  }
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
  }
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-image-wrapper img {
    height: 250px;
  }
  .page-gdpr__measures-image img {
    height: 300px;
  }
  .page-gdpr__card-title {
    font-size: 1.2rem;
  }
  .page-gdpr__card p {
    font-size: 0.95rem;
  }
  .page-gdpr__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-gdpr__faq-answer {
    padding: 15px 20px;
  }
  .page-gdpr__contact-info p {
    font-size: 1rem;
  }
}