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

.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Default text color for dark body background */
  line-height: 1.6;
  background-color: var(--bg-dark); /* Ensure consistency with body background */
}

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

/* Fixed Navbar Spacing */
.page-gdpr__hero-section {
  position: relative;
  padding: 120px 0 60px; /* Desktop: Adjust padding-top for fixed header */
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(26, 26, 26, 0.8) 100%), url('[GALLERY:gdpr:hero_background,abstract,gold_black,pattern,ibet188_link]') no-repeat center center/cover;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: var(--secondary-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.3);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-gdpr__content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-gdpr__content-section:last-of-type {
  border-bottom: none;
}

.page-gdpr__dark-bg {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-gdpr__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-gdpr__content-section .page-gdpr__dark-bg p {
  color: #f0f0f0;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-gdpr__principle-item {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for card background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

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

.page-gdpr__item-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-gdpr__principle-item p {
  font-size: 1em;
  color: #e0e0e0;
  text-align: center;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__rights-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-left: 5px solid var(--primary-color);
  transition: background-color 0.3s ease;
  color: var(--text-light);
}

.page-gdpr__rights-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.page-gdpr__rights-item .page-gdpr__item-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-align: left;
}

.page-gdpr__rights-item p {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 0;
  text-align: left;
}

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

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

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

.page-gdpr__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%; /* Make icons circular if preferred */
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__feature-item .page-gdpr__item-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-gdpr__feature-item p {
  font-size: 1em;
  color: #e0e0e0;
  text-align: center;
}

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

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

  .page-gdpr__hero-section {
    padding: 100px 0 50px; /* Adjust padding-top for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px !important; /* Mobile: Ensure content is not hidden by fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

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

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

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

  .page-gdpr__content-section p {
    font-size: 0.95em;
  }

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__principles-grid, .page-gdpr__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__principle-item, .page-gdpr__rights-item, .page-gdpr__feature-item {
    padding: 20px;
  }

  .page-gdpr__item-title {
    font-size: 1.3em;
  }

  .page-gdpr__feature-icon {
    width: 80px;
    height: 80px;
  }

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}

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

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

  .page-gdpr__hero-section {
    padding-top: 80px !important; /* Smaller padding for very small screens */
  }
}