/* style/gdpr.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #000080;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --transition-speed: 0.3s ease;
}

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

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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: calc(var(--header-offset, 120px) + 40px); /* Adjust for header and add extra space */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.page-gdpr__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color); /* Gold color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px var(--shadow-medium);
  margin-top: 30px;
  object-fit: cover;
}

.page-gdpr__overview-section,
.page-gdpr__principles-section,
.page-gdpr__rights-section,
.page-gdpr__security-section,
.page-gdpr__updates-section {
  background-color: var(--bg-white);
  padding: 60px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow-light);
}

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

.page-gdpr__dark-bg .page-gdpr__section-title,
.page-gdpr__dark-bg .page-gdpr__subsection-title,
.page-gdpr__dark-bg p,
.page-gdpr__dark-bg li {
  color: var(--text-light);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__subsection-title {
  font-size: 1.8em;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  display: inline-block;
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-gdpr__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px var(--shadow-medium);
  object-fit: cover;
}

.page-gdpr__principle-list,
.page-gdpr__rights-list,
.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__principle-item,
.page-gdpr__rights-item,
.page-gdpr__security-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--primary-color);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow-light);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.page-gdpr__principle-item:hover,
.page-gdpr__rights-item:hover,
.page-gdpr__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow-medium);
}

.page-gdpr__principle-title,
.page-gdpr__rights-title,
.page-gdpr__security-title {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__data-processing-section {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 60px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.page-gdpr__highlight-box {
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 60px 20px;
  border-radius: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px var(--shadow-medium);
  text-align: center;
}

.page-gdpr__highlight-box .page-gdpr__section-title {
  color: var(--secondary-color);
  text-shadow: none;
}

.page-gdpr__highlight-box p {
  color: var(--text-dark);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__contact-link {
  color: var(--secondary-color);
  font-weight: bold;
  text-decoration: underline;
  transition: color var(--transition-speed);
}

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

.page-gdpr__cta-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  transition: all var(--transition-speed);
  box-shadow: 0 4px 12px var(--shadow-medium);
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background: #000050;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-medium);
}

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

.page-gdpr__btn-primary:hover {
  background: #e6c200;
  color: var(--text-dark);
}

/* ------------------------------------ */
/* Responsive Design */
/* ------------------------------------ */

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

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

  .page-gdpr__subsection-title {
    font-size: 1.6em;
  }

  .page-gdpr p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: calc(var(--header-offset, 120px) + 20px) !important;
    padding-bottom: 40px;
  }

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

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

  .page-gdpr__overview-section,
  .page-gdpr__principles-section,
  .page-gdpr__rights-section,
  .page-gdpr__security-section,
  .page-gdpr__updates-section,
  .page-gdpr__data-processing-section,
  .page-gdpr__highlight-box {
    padding: 40px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

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

  .page-gdpr__subsection-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

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

  .page-gdpr__content-image,
  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
  }

  .page-gdpr__principle-item,
  .page-gdpr__rights-item,
  .page-gdpr__security-item {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
  }

  .page-gdpr__principle-title,
  .page-gdpr__rights-title,
  .page-gdpr__security-title {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

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

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

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

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

  .page-gdpr__subsection-title {
    font-size: 1.2em;
  }

  .page-gdpr__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}