:root {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #0A2463;
}

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

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

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

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

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

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

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

.page-gdpr__btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

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

.page-gdpr__btn-secondary {
  background: var(--secondary-color);
  color: var(--text-dark);
  border: 2px solid var(--secondary-color);
}

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

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

.page-gdpr__dark-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-gdpr__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark);
}

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

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

.page-gdpr__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

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

.page-gdpr__content-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-gdpr__dark-section .page-gdpr__content-block {
  background: #1a3a78;
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__content-block:hover {
  transform: translateY(-5px);
}

.page-gdpr__content-subtitle {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-gdpr__dark-section .page-gdpr__content-subtitle {
  color: var(--secondary-color);
}

.page-gdpr__content-block p {
  font-size: 16px;
  line-height: 1.7;
}

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

.page-gdpr__image--full-width {
  width: 100%;
}

.page-gdpr__image--centered {
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__principles-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-gdpr__principles-item:hover {
  transform: translateY(-5px);
}

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

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

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

.page-gdpr__right-card {
  background: #1a3a78;
  color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
  background-color: #2b4c90;
}

.page-gdpr__right-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

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

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

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

.page-gdpr__feature-item:hover {
  transform: translateY(-5px);
}

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

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

.page-gdpr__contact-info {
  background: #1a3a78;
  color: var(--text-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
  text-align: center;
}

.page-gdpr__contact-info p {
  font-size: 18px;
  margin-bottom: 20px;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__contact-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

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

.page-gdpr__contact-link:hover {
  color: #fff;
}

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

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px; /* Adjust for mobile fixed header */
  }
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__main-title {
    font-size: 32px;
  }
  .page-gdpr__hero-description {
    font-size: 16px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__section-title {
    font-size: 28px;
  }
  .page-gdpr__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-gdpr__content-grid,
  .page-gdpr__principles-list,
  .page-gdpr__rights-grid,
  .page-gdpr__security-features {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .page-gdpr__content-block,
  .page-gdpr__principles-item,
  .page-gdpr__right-card,
  .page-gdpr__feature-item {
    padding: 20px;
  }
  .page-gdpr__content-subtitle,
  .page-gdpr__principles-title,
  .page-gdpr__right-title,
  .page-gdpr__feature-title {
    font-size: 20px;
  }
  .page-gdpr__image {
    margin-top: 30px;
    border-radius: 8px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__contact-info {
    padding: 30px 20px;
  }
  .page-gdpr__contact-info p {
    font-size: 16px;
  }
  .page-gdpr__contact-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 28px;
  }
  .page-gdpr__section-title {
    font-size: 24px;
  }
  .page-gdpr__hero-description {
    font-size: 15px;
  }
  .page-gdpr__cta-button {
    font-size: 15px !important;
    padding: 10px 15px !important;
  }
  .page-gdpr__content-subtitle,
  .page-gdpr__principles-title,
  .page-gdpr__right-title,
  .page-gdpr__feature-title {
    font-size: 18px;
  }
  .page-gdpr__content-block p,
  .page-gdpr__principles-item p,
  .page-gdpr__right-card p,
  .page-gdpr__feature-item p,
  .page-gdpr__contact-info p,
  .page-gdpr__contact-list li {
    font-size: 14px;
  }
}

/* General image responsiveness for all images */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-gdpr__section,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed header */
  }
}