/* style/gdpr.css */

/* Custom CSS Variables for GDPR Page */
:root {
  --page-gdpr-primary-color: #26A9E0;
  --page-gdpr-secondary-color: #FFFFFF;
  --page-gdpr-text-color: #333333;
  --page-gdpr-light-text-color: #ffffff;
  --page-gdpr-border-color: #e0e0e0;
  --page-gdpr-background-light: #f9f9f9;
  --page-gdpr-login-color: #EA7C07;
  --page-gdpr-black-color: #000000;
}

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

/* Fixed Header Offset */
.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px);
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--page-gdpr-primary-color) 0%, #a7e1f7 100%);
  color: var(--page-gdpr-light-text-color);
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--page-gdpr-light-text-color);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--page-gdpr-login-color);
  color: var(--page-gdpr-light-text-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: #c26706; /* Darker version of #EA7C07 */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Main Content Area */
.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-text-color);
}

.page-gdpr__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-gdpr__article {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--page-gdpr-border-color);
}

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

.page-gdpr__section-title {
  font-size: 2em;
  color: var(--page-gdpr-primary-color);
  margin-bottom: 25px;
  border-bottom: 2px solid var(--page-gdpr-primary-color);
  padding-bottom: 10px;
}