/* style/gdpr.css */

/* Custom Colors */
:root {
  --gdpr-primary-color: #11A84E;
  --gdpr-secondary-color: #22C768;
  --gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --gdpr-card-bg: #11271B;
  --gdpr-background: #08160F;
  --gdpr-text-main: #F2FFF6;
  --gdpr-text-secondary: #A7D9B8;
  --gdpr-border: #2E7A4E;
  --gdpr-glow: #57E38D;
  --gdpr-gold: #F2C14E;
  --gdpr-divider: #1E3A2A;
  --gdpr-deep-green: #0A4B2C;
}

/* General Page Styling */
.page-gdpr {
  background-color: var(--gdpr-background);
  color: var(--gdpr-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--gdpr-divider);
}

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

.page-gdpr__dark-bg {
  background-color: var(--gdpr-card-bg);
  color: var(--gdpr-text-main);
}

/* Headings */
.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gdpr-gold);
  text-align: center;
  margin-bottom: 20px;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--gdpr-primary-color);
  text-align: center;
  margin-bottom: 40px;
  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: var(--gdpr-secondary-color);
  border-radius: 2px;
}

.page-gdpr__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--gdpr-text-main);
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid var(--gdpr-glow);
  padding-left: 15px;
}

/* Paragraphs */
.page-gdpr__paragraph {
  font-size: 1.1rem;
  color: var(--gdpr-text-secondary);
  margin-bottom: 20px;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and text */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-gdpr__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__subtitle {
  font-size: 1.2rem;
  color: var(--gdpr-text-secondary);
  margin-bottom: 30px;
}

/* Buttons */
.page-gdpr__btn-primary {
  display: inline-block;
  background: var(--gdpr-button-gradient);
  color: #ffffff; /* White text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Image Text Block (for layout flexibility) */
.page-gdpr__image-text-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-gdpr__image-text-block--reversed {
  flex-direction: row-reverse;
}

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

.page-gdpr__image-container {
  flex: 1;
  min-width: 300px; /* Ensure image has a minimum size */
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Section Specific */
.page-gdpr__contact-section {
  background-color: var(--gdpr-deep-green);
  color: var(--gdpr-text-main);
}

.page-gdpr__flex-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.page-gdpr__contact-content {
  flex: 1;
}

.page-gdpr__contact-image-container {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__contact-item {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--gdpr-text-secondary);
}

.page-gdpr__contact-link {
  color: var(--gdpr-glow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: var(--gdpr-gold);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__image-text-block,
  .page-gdpr__flex-container {
    flex-direction: column;
    align-items: center;
  }

  .page-gdpr__image-text-block--reversed {
    flex-direction: column;
  }

  .page-gdpr__image-container,
  .page-gdpr__contact-image-container {
    width: 100%;
    max-width: 600px; /* Constrain image on smaller screens */
    margin-top: 30px;
  }

  .page-gdpr__text-content,
  .page-gdpr__contact-content {
    width: 100%;
    text-align: center;
  }

  .page-gdpr__contact-list {
    text-align: center;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    padding-left: 10px;
    border-left-width: 3px;
  }

  .page-gdpr__paragraph,
  .page-gdpr__subtitle,
  .page-gdpr__contact-item {
    font-size: 1rem;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-container,
  .page-gdpr__contact-image-container,
  .page-gdpr__container,
  .page-gdpr__section,
  .page-gdpr__hero-content,
  .page-gdpr__text-content,
  .page-gdpr__contact-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile button responsiveness */
  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  /* No video section in this page, so no video specific mobile CSS needed */
}