/* style/gdpr.css */

/* Variables for colors */
:root {
  --page-gdpr-primary-color: #FFD700; /* Gold */
  --page-gdpr-secondary-color: #000080; /* Dark Blue */
  --page-gdpr-text-dark: #333333;
  --page-gdpr-text-light: #FFFFFF;
  --page-gdpr-background-light: #F8F8F8;
  --page-gdpr-background-dark: #000050;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-gdpr-text-dark);
  background-color: var(--page-gdpr-background-light);
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, var(--page-gdpr-primary-color), var(--page-gdpr-secondary-color));
  color: var(--page-gdpr-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--page-gdpr-text-light);
}

.page-gdpr__hero-title .highlight {
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #E0E0E0; /* Slightly lighter for contrast */
}

.page-gdpr__section {
  padding: 60px 0;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #F0F0F0; /* Slightly off-white for visual separation */
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: var(--page-gdpr-secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title .highlight {
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-gdpr-primary-color);
  border-radius: 2px;
}

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

.page-gdpr__content-flex > div {
  flex: 1;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--page-gdpr-text-dark);
}

.page-gdpr__image-wrapper {
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--medium {
  max-width: 600px;
}

.page-gdpr__image-wrapper--center {
  margin-top: 30px;
}

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

.page-gdpr__grid-item {
  background-color: var(--page-gdpr-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__grid-item h3 {
  color: var(--page-gdpr-secondary-color);
  font-size: 1.5em;
  margin: 20px 0 10px;
}

.page-gdpr__grid-item p {
  color: var(--page-gdpr-text-dark);
  font-size: 1em;
}

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  color: var(--page-gdpr-primary-color);
}

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

.page-gdpr__list li {
  background-color: var(--page-gdpr-text-light);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid var(--page-gdpr-primary-color);
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
  font-size: 1.1em;
  color: var(--page-gdpr-text-dark);
}

.page-gdpr__list li strong {
  color: var(--page-gdpr-secondary-color);
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn--primary {
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-secondary-color);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-gdpr__btn--primary:hover {
  background-color: #E6C200; /* Darker gold */
  color: var(--page-gdpr-background-dark);
}

.page-gdpr__btn--secondary {
  background-color: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-text-light);
  box-shadow: 0 4px 10px rgba(0, 0, 128, 0.3);
}

.page-gdpr__btn--secondary:hover {
  background-color: var(--page-gdpr-background-dark);
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__contact-info {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: var(--page-gdpr-text-dark);
}

.page-gdpr__link {
  color: var(--page-gdpr-secondary-color);
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__content-flex {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__image-wrapper {
    margin-top: 30px;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__grid-item {
    padding: 20px;
  }
  .page-gdpr__grid-item h3 {
    font-size: 1.3em;
  }
  .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.3em;
  }
  .page-gdpr__text-content p {
    font-size: 0.95em;
  }
  .page-gdpr__list li {
    font-size: 0.95em;
  }
}