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

/* Hero Section */
.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; /* Small top padding, body handles header offset */
  background-color: #F5F7FA; /* Background */
  color: #333333;
}

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

.page-gdpr__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #E53935; /* Primary color for main title */
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 18px;
  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, #FF5A4F 0%, #E53935 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-gdpr__section {
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__section--light-bg {
  background-color: #F5F7FA; /* Background */
  color: #333333; /* Text Main */
}

.page-gdpr__section--dark-bg {
  background-color: #E53935; /* Primary color */
  color: #ffffff;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-gdpr__container--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  color: inherit; /* Inherits color from section */
}

.page-gdpr__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Grid for Principles */
.page-gdpr__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__feature-item {
  background-color: #ffffff; /* Card BG */
  color: #333333; /* Text Main */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__feature-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-gdpr__feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #E53935; /* Primary color */
}

.page-gdpr__feature-description {
  font-size: 16px;
}

/* Rights List */
.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-gdpr__rights-item {
  background-color: #ffffff; /* Card BG */
  color: #333333; /* Text Main */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-left: 5px solid #FF5A4F; /* Secondary color accent */
  font-size: 16px;
}

.page-gdpr__rights-item strong {
  color: #E53935; /* Primary color for emphasis */
}

/* Compliance Details Grid */
.page-gdpr__compliance-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__detail-card {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark bg */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-gdpr__detail-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FF5A4F; /* Secondary color for titles on dark bg */
}

.page-gdpr__detail-description {
  font-size: 16px;
}

/* Contact Info */
.page-gdpr__contact-info {
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
  padding: 30px;
  background-color: #ffffff; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__contact-item {
  font-size: 17px;
  margin-bottom: 15px;
  color: #333333; /* Text Main */
}

.page-gdpr__contact-item strong {
  color: #E53935; /* Primary color */
}

.page-gdpr__contact-link {
  color: #E53935; /* Primary color for links */
  text-decoration: none;
  font-weight: 600;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: #FF5A4F; /* Secondary color on hover */
}

/* FAQ Section */
.page-gdpr__section--faq {
  padding-bottom: 80px;
}

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

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #E0E0E0; /* Border */
  overflow: hidden;
  background: #ffffff; /* Card BG */
}

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

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: #f5f5f5;
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

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

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 20px 20px;
  background: #F5F7FA; /* Background */
  border-radius: 0 0 5px 5px;
  color: #333333;
  text-align: left;
}

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-gdpr__section--final-cta {
  padding: 60px 20px;
  background-color: #E53935; /* Primary color */
  color: #ffffff;
}

.page-gdpr__section--final-cta .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__section--final-cta .page-gdpr__paragraph {
  color: #ffffff;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__feature-grid, .page-gdpr__compliance-details {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@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 img {
    border-radius: 4px;
  }
  
  .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;
  }

  .page-gdpr__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-gdpr__hero-description {
    font-size: 16px;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(20px, 5vw, 32px);
    margin-bottom: 30px;
  }

  .page-gdpr__paragraph {
    font-size: 15px;
  }

  .page-gdpr__feature-grid, .page-gdpr__compliance-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__feature-item, .page-gdpr__detail-card {
    padding: 20px;
  }

  .page-gdpr__feature-title, .page-gdpr__detail-title {
    font-size: 20px;
  }

  .page-gdpr__rights-item, .page-gdpr__contact-info {
    padding: 15px 20px;
    font-size: 15px;
  }

  .page-gdpr__contact-info {
    padding: 20px;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px;
  }
  .page-gdpr__faq-qtext {
    font-size: 15px;
  }
  .page-gdpr__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 15px 15px;
  }

  /* General image and container responsive rules */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-gdpr__section, .page-gdpr__card, .page-gdpr__container, .page-gdpr__feature-item, .page-gdpr__detail-card, .page-gdpr__rights-list, .page-gdpr__contact-info, .page-gdpr__faq-list {
    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: clamp(22px, 7vw, 30px);
  }
  .page-gdpr__section-title {
    font-size: clamp(18px, 6vw, 28px);
  }
  .page-gdpr__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
}