/* style/gdpr.css */
:root {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0d0d0d;
  --bg-light: #f5f5f5;
  --border-color: #e0e0e0;
  --card-bg-dark-alpha: rgba(255, 255, 255, 0.1);
}

.page-gdpr {
  color: var(--text-light); /* Body background is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

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

.page-gdpr__hero-section {
  background: var(--primary-color);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--small {
  padding: 10px 25px;
  font-size: 1em;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-gdpr__dark-section {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0;
}

.page-gdpr__compliance-section {
  padding-bottom: 60px;
}

.page-gdpr__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-gdpr__content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
}

.page-gdpr__image-box {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  text-align: center;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: block;
}

.page-gdpr__content-image:hover {
  transform: scale(1.02);
}

.page-gdpr__text-block {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-gdpr__text-block p {
  margin-bottom: 20px;
}

.page-gdpr__principles-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 60px 0;
}

.page-gdpr__principles-section .page-gdpr__section-title {
  color: var(--primary-color);
}

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

.page-gdpr__card {
  background: #ffffff;
  color: var(--text-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-gdpr__card-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

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

.page-gdpr__section-intro {
  font-size: 1.15em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-light);
}

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

.page-gdpr__right-item {
  background: var(--card-bg-dark-alpha);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-gdpr__right-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-gdpr__right-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__right-title {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-gdpr__security-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 60px 0;
}

.page-gdpr__security-section .page-gdpr__section-title {
  color: var(--primary-color);
}

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

.page-gdpr__contact-section {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 60px 0;
}

.page-gdpr__contact-section .page-gdpr__section-title {
  color: var(--primary-color);
}

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

.page-gdpr__inline-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }

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

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

  .page-gdpr__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-gdpr__dark-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__security-section,
  .page-gdpr__cookies-section,
  .page-gdpr__contact-section,
  .page-gdpr__updates-section {
    padding: 40px 0;
  }

  .page-gdpr__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__content-wrapper:nth-child(even) {
    flex-direction: column;
  }

  .page-gdpr__image-box {
    max-width: 100%;
  }

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

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

  .page-gdpr__card {
    padding: 25px;
  }

  .page-gdpr__card-title {
    font-size: 1.2em;
  }

  .page-gdpr__rights-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }

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

  .page-gdpr__right-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .page-gdpr__right-title {
    font-size: 1.1em;
  }

  .page-gdpr__text-block p {
    font-size: 0.95em;
  }
  
  .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;
  }
  
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-gdpr video,
  .page-gdpr__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-gdpr__video-section {
    padding-top: 10px !important;
  }
}

/* General image responsive styles (min 200x200px) */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure no filter properties change image colors */
.page-gdpr img {
  filter: none; /* Explicitly remove any default filter */
}