/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1A2E4E; /* Dark blue for general text on light background */
  background-color: #f8f8f8; /* Very light grey background */
  direction: ltr;
}

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

/* Hero Section */
.page-gdpr__hero {
  background: linear-gradient(135deg, #1A2E4E 0%, #3a5075 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title accent */
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  opacity: 0.9;
}

/* General Section Styling */
.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #1A2E4E; /* Dark blue title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__intro,
.page-gdpr__rights,
.page-gdpr__contact,
.page-gdpr__effective-date {
  background-color: #FFFFFF;
}

.page-gdpr__principles,
.page-gdpr__security {
  background-color: #f0f4f7; /* Slightly lighter blue-grey background */
}

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__list li strong {
  color: #1A2E4E;
}

.page-gdpr__link {
  color: #1A2E4E; /* Dark blue link on light background */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
  color: #FFD700; /* Gold on hover */
}

/* Special link for mailto */
.page-gdpr__contact .page-gdpr__link[href^="mailto"] {
  color: #FFD700; /* Gold for mailto link */
}

.page-gdpr__contact .page-gdpr__link[href^="mailto"]:hover {
  color: #e5c100; /* Darker gold on hover */
}

/* Image Styling */
.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
  min-width: 300px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
  min-width: 300px;
}

.page-gdpr__image--full {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.page-gdpr__container::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

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

  .page-gdpr__list {
    margin-left: 20px;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right,
  .page-gdpr__image--full {
    float: none;
    margin: 20px auto;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 60px 15px;
  }

  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

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

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

  .page-gdpr__section p,
  .page-gdpr__list li {
    font-size: 0.95em;
  }
}