/* style/gdpr.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Grey */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --card-bg-dark-mode: rgba(255, 255, 255, 0.08);
  --border-color-dark-mode: rgba(255, 255, 255, 0.15);
}

.page-gdpr {
  color: var(--text-light); /* Body background is dark #121212, so use light text */
  background-color: var(--bg-dark);
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

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

/* Fixed header padding adjustment */
.page-gdpr__hero-section {
  padding-top: 120px; /* Adjust based on header height */
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0a0a0a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

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

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.page-gdpr__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:first-child {
  background-color: var(--card-bg-dark-mode);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-gdpr__cta-button:first-child:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-gdpr__cta-button--primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-gdpr__cta-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-gdpr__cta-button--secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-gdpr__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-gdpr__introduction-section,
.page-gdpr__rights-section,
.page-gdpr__compliance-section,
.page-gdpr__contact-section,
.page-gdpr__commitment-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color-dark-mode);
}

.page-gdpr__introduction-section {
  background-color: #1a1a1a;
}

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

.page-gdpr__text-block {
  flex: 1;
}

.page-gdpr__text-block p {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-gdpr__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.page-gdpr__right-card {
  background-color: var(--card-bg-dark-mode);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color-dark-mode);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.12);
}

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

.page-gdpr__right-card p {
  color: #c0c0c0;
  font-size: 1em;
}

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

.page-gdpr__compliance-item {
  background-color: var(--card-bg-dark-mode);
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color-dark-mode);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

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

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

.page-gdpr__compliance-item p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-gdpr__full-width-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__contact-info {
  background-color: var(--card-bg-dark-mode);
  padding: 30px;
  border-radius: 12px;
  margin: 0 auto 40px auto;
  max-width: 800px;
  text-align: center;
  border: 1px solid var(--border-color-dark-mode);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-info p {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 10px;
}

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

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

.page-gdpr__image--center {
  display: block;
  margin: 50px auto 0 auto;
  max-width: 600px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__content-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px !important; /* Mobile adjustment */
    padding-bottom: 40px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description,
  .page-gdpr__section-description,
  .page-gdpr__text-block p,
  .page-gdpr__right-card p,
  .page-gdpr__compliance-item p,
  .page-gdpr__contact-info p {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-gdpr__introduction-section,
  .page-gdpr__rights-section,
  .page-gdpr__compliance-section,
  .page-gdpr__contact-section,
  .page-gdpr__commitment-section {
    padding: 50px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__right-card,
  .page-gdpr__compliance-item,
  .page-gdpr__contact-info {
    padding: 20px;
    border-radius: 8px;
  }
  .page-gdpr__card-title,
  .page-gdpr__list-title {
    font-size: 1.2em;
  }
  .page-gdpr__image,
  .page-gdpr__full-width-image,
  .page-gdpr__image--center {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
}