/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
  background-color: #f8f8f8;
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #A00000 0%, #FFD700 100%);
  color: #ffffff;
  padding: 80px 0 60px 0;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-gdpr__main-title {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
}

.page-gdpr__cta-button--primary {
  background-color: #FFD700;
  color: #A00000;
  border: 2px solid #FFD700;
}

.page-gdpr__cta-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #A00000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-gdpr__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

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

.page-gdpr__grid-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__item-title {
  font-size: 22px;
  font-weight: bold;
  color: #A00000;
  margin-bottom: 15px;
}

.page-gdpr__grid-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
}

.page-gdpr__rights-section {
  background-color: #A00000;
  color: #ffffff;
}

.page-gdpr__rights-section .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__rights-section .page-gdpr__section-title::after {
  background-color: #FFD700;
}

.page-gdpr__rights-section .page-gdpr__text-block {
  color: #f0f0f0;
}

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

.page-gdpr__right-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  transition: background-color 0.3s ease;
}

.page-gdpr__right-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-gdpr__right-item .page-gdpr__item-title {
  color: #FFD700;
  font-size: 20px;
}

.page-gdpr__right-item p {
  color: #f0f0f0;
  font-size: 16px;
}

.page-gdpr__rights-cta {
  margin-top: 50px;
}

.page-gdpr__implementation-section {
  background-color: #f0f0f0;
}

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

.page-gdpr__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__feature-item .page-gdpr__item-title {
  color: #A00000;
  font-size: 22px;
}

.page-gdpr__feature-item p {
  color: #666666;
  font-size: 16px;
}

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

.page-gdpr__contact-info {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.8;
  color: #555555;
}

.page-gdpr__contact-info a {
  color: #A00000;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-info a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 38px;
  }
  .page-gdpr__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__main-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .page-gdpr__description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-gdpr__text-block {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-gdpr__grid-layout, .page-gdpr__feature-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .page-gdpr__grid-item, .page-gdpr__feature-item {
    padding: 20px;
  }
  .page-gdpr__item-title {
    font-size: 20px;
  }
  .page-gdpr__grid-item p, .page-gdpr__feature-item p, .page-gdpr__right-item p {
    font-size: 15px;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__right-item {
    padding: 20px;
  }
  .page-gdpr__right-item .page-gdpr__item-title {
    font-size: 18px;
  }
  .page-gdpr__rights-cta {
    margin-top: 30px;
  }
  .page-gdpr__contact-section {
    padding: 50px 0;
  }
  .page-gdpr__contact-info {
    font-size: 16px;
  }
  /* Image specific mobile styles */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__grid-item, .page-gdpr__feature-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}