.page-gdpr {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: #333333;
  background: #FFFFFF;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8f9fa;
  padding: 10px 0 30px;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 17/5;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.page-gdpr__hero-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-gdpr__hero-title {
  color: #017439;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 16px;
}

.page-gdpr__hero-description {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333333;
}

.page-gdpr__hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn--login {
  background: #C30808;
  color: #FFFF00;
}

.page-gdpr__btn--register {
  background: #C30808;
  color: #FFFF00;
}

.page-gdpr__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.page-gdpr__logo-section {
  padding: 40px 0;
  background: #FFFFFF;
}

.page-gdpr__section-title {
  text-align: center;
  color: #017439;
  font-size: 1.8rem;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-gdpr__logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
  justify-items: center;
}

.page-gdpr__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  padding: 20px;
  border-radius: 8px;
  background: #f8f9fa;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.page-gdpr__logo-item:hover {
  transform: translateY(-4px);
}

.page-gdpr__logo-image {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 2/1;
  object-fit: contain;
}

.page-gdpr__logo-text {
  font-weight: 600;
  color: #333333;
  text-align: center;
  margin: 0;
  font-size: 0.95rem;
}

.page-gdpr__logo-item:nth-child(5) {
  grid-column: 2;
}

.page-gdpr__logo-item:nth-child(6) {
  grid-column: 3;
}

.page-gdpr__guide-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.page-gdpr__guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-gdpr__guide-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.page-gdpr__guide-figure {
  margin: 0 0 16px;
}

.page-gdpr__guide-image {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  border-radius: 8px;
}

.page-gdpr__guide-title {
  color: #017439;
  font-size: 1.1rem;
  margin: 0 0 10px;
  line-height: 1.4;
}

.page-gdpr__guide-text {
  color: #333333;
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 12px;
}

.page-gdpr__guide-link {
  color: #017439;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.page-gdpr__guide-link:hover {
  color: #015d2c;
}

.page-gdpr__faq-section {
  padding: 40px 0;
  background: #FFFFFF;
}

.page-gdpr__faq-item {
  border-bottom: 1px solid #e9ecef;
  padding: 16px 0;
}

.page-gdpr__faq-question {
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  font-size: 1.05rem;
  padding: 8px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.page-gdpr__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #017439;
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.page-gdpr__faq-answer {
  color: #555;
  line-height: 1.6;
  margin: 8px 0 0;
  padding-right: 24px;
}

.page-gdpr__cta-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #017439 0%, #015d2c 100%);
  text-align: center;
}

.page-gdpr__cta-title {
  color: #FFFFFF;
  font-size: 1.8rem;
  margin: 0 0 12px;
}

.page-gdpr__cta-text {
  color: #FFFFFF;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .page-gdpr__guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-image {
    aspect-ratio: 2/1;
  }

  .page-gdpr__hero-title {
    font-size: 1.4rem;
  }

  .page-gdpr__hero-description {
    font-size: 1rem;
  }

  .page-gdpr__hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .page-gdpr__btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .page-gdpr__logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-gdpr__logo-item:nth-child(5),
  .page-gdpr__logo-item:nth-child(6) {
    grid-column: auto;
  }

  .page-gdpr__logo-image {
    max-width: 180px;
  }

  .page-gdpr__guide-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__guide-figure {
    margin-bottom: 12px;
  }

  .page-gdpr__guide-image {
    width: 100%;
    height: auto;
  }

  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-gdpr {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-gdpr__container {
    padding: 0 12px;
  }
}