/* style/gdpr.css */
:root {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a;
  --card-background: rgba(255, 255, 255, 0.08);
  --border-color: rgba(255, 255, 255, 0.15);
}

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

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

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

.page-gdpr__main-title {
  font-size: 42px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #f9f9f9; /* Light background for contrast */
  color: var(--text-dark); /* Dark text on light background */
}

.page-gdpr__section-title {
  font-size: 32px;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__content-section p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
}

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

.page-gdpr__card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark); /* Dark text on white card */
  border: 1px solid #e0e0e0;
}

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

.page-gdpr__card-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-gdpr__card-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card p {
  font-size: 15px;
  line-height: 1.6;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  padding: 0;
  margin-top: 30px;
}

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

.page-gdpr__list-item strong {
  color: var(--primary-color);
}

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

.page-gdpr__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
}

.page-gdpr__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-gdpr__feature-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

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

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

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

.page-gdpr__commitment-section .page-gdpr__section-title {
  color: var(--secondary-color);
}

.page-gdpr__commitment-section p {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 16px;
  line-height: 1.7;
}

.page-gdpr__commitment-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 38px;
  }
  .page-gdpr__hero-description {
    font-size: 17px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
  .page-gdpr__card-image {
    width: 120px;
    height: 120px;
  }
  .page-gdpr__feature-icon {
    width: 80px;
    height: 80px;
  }
}

@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: 32px;
  }
  .page-gdpr__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-gdpr__content-section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-gdpr__grid, .page-gdpr__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card, .page-gdpr__feature-item {
    padding: 25px;
  }
  .page-gdpr__card-image {
    width: 100px;
    height: 100px;
  }
  .page-gdpr__feature-icon {
    width: 70px;
    height: 70px;
  }
  .page-gdpr__list {
    margin-left: 20px;
  }
  .page-gdpr__list-item {
    font-size: 15px;
  }
  .page-gdpr__cta-wrapper {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .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 img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__hero-image, .page-gdpr__commitment-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__commitment-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 28px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
  }
  .page-gdpr__card-title {
    font-size: 18px;
  }
  .page-gdpr__card, .page-gdpr__feature-item {
    padding: 20px;
  }
  .page-gdpr__hero-section, .page-gdpr__commitment-section {
    padding: 30px 0;
  }
  .page-gdpr__content-section {
    padding: 30px 0;
  }
}