.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--color-deep-navy);
  line-height: 1.6;
  font-size: 16px;
}

.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, main offset handled by body */
  color: var(--text-main);
  overflow: hidden;
}

.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;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-gdpr__main-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--gold);
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__intro-text {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-gdpr__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
}

.page-gdpr__section {
  padding: 80px 0;
  position: relative;
}

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

.page-gdpr__section-title {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.page-gdpr p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 17px;
}

.page-gdpr a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: var(--glow);
  text-decoration: underline;
}

.page-gdpr__introduction-section {
  background-color: var(--color-deep-navy);
}

.page-gdpr__principles-section {
  background-color: var(--card-bg);
}

.page-gdpr__dark-section {
  background-color: var(--card-bg);
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__list-item {
  background-color: var(--color-deep-navy);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__list-title {
  font-size: 22px;
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__list-item p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.page-gdpr__rights-section {
  background-color: var(--color-deep-navy);
}

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

.page-gdpr__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

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

.page-gdpr__card-title {
  font-size: 20px;
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.page-gdpr__text-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 15px;
}

.page-gdpr__security-section {
  background-color: var(--color-deep-navy);
}

.page-gdpr__image-text-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__text-content {
  flex: 2;
}

.page-gdpr__sub-title {
  font-size: 24px;
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__cookie-policy-section {
  background-color: var(--card-bg);
}

.page-gdpr__cookie-policy-section img {
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__contact-section {
  background-color: var(--color-deep-navy);
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__contact-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 17px;
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-gdpr__contact-item strong {
  color: var(--text-main);
}

.page-gdpr__faq-section {
  background-color: var(--color-deep-navy);
}

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

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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: var(--text-main);
  font-weight: 600;
}

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: var(--color-deep-navy);
}

.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-gdpr__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 25px 25px;
  background: var(--color-deep-navy);
  border-radius: 0 0 8px 8px;
  color: var(--text-secondary);
  font-size: 16px;
}

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

.page-gdpr__conclusion-section {
  background-color: var(--card-bg);
  text-align: center;
}

.page-gdpr__conclusion-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__update-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 40px;
  font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__image-text-layout {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
  }

  .page-gdpr__text-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
  }

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-image {
    border-radius: 8px;
    margin-bottom: 20px;
  }

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

  .page-gdpr__main-title {
    font-size: 26px;
  }

  .page-gdpr__intro-text {
    font-size: 16px;
  }

  .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__section {
    padding: 50px 0;
  }

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-gdpr p {
    font-size: 16px;
  }

  .page-gdpr__list-item {
    padding: 20px;
  }

  .page-gdpr__list-title {
    font-size: 20px;
  }

  .page-gdpr__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__card-title {
    font-size: 18px;
  }

  .page-gdpr__image-wrapper img, 
  .page-gdpr__cookie-policy-section img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__sub-title {
    font-size: 20px;
  }

  details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    padding: 15px 20px;
  }

  .page-gdpr__faq-qtext {
    font-size: 16px;
  }

  .page-gdpr__faq-toggle {
    font-size: 24px;
    width: 25px;
  }

  details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }
  
  .page-gdpr__cta-button--small {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 24px;
  }

  .page-gdpr__section-title {
    font-size: 26px;
  }

  .page-gdpr__sub-title {
    font-size: 18px;
  }

  .page-gdpr__faq-qtext {
    font-size: 15px;
  }
}

/* Custom colors */
:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border: #244D84;
  --glow: #4FA8FF;
  --gold: #F2C14E;
  --divider: #1B3357;
  --color-deep-navy: #08162B;
}