/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #1A2B4C; /* Dark blue for main text */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for readability */
}

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #3a507a 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  color: #E0E0E0; /* Light gray for description */
}

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Black text on gold button for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__hero-button:hover {
  background-color: #e5c100; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  z-index: 0;
  max-width: 500px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #FFFFFF; /* White background for content sections */
  border-bottom: 1px solid #eee;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: #fdfdfd;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #1A2B4C; /* Dark blue for section titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

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

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

.page-gdpr__principle-item {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.page-gdpr__principle-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.page-gdpr__principle-item h3 {
  font-size: 1.5em;
  color: #1A2B4C;
  margin-bottom: 15px;
}

.page-gdpr__principle-item p {
  font-size: 1em;
  color: #333333;
}

.page-gdpr__user-rights ul {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-gdpr__user-rights li {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #333333;
}

.page-gdpr__user-rights li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-gdpr__user-rights strong {
  color: #1A2B4C;
}

.page-gdpr__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-gdpr__block-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__image-text-block p {
  flex: 2;
  font-size: 1.1em;
  color: #333333;
  text-align: justify;
}

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

.page-gdpr__implementation-item {
  background-color: #e8eef6; /* Lighter blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #1A2B4C;
}

.page-gdpr__implementation-item h3 {
  font-size: 1.4em;
  color: #1A2B4C;
  margin-bottom: 15px;
}

.page-gdpr__implementation-item p {
  font-size: 1em;
  color: #333333;
}

.page-gdpr__full-width-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact {
  text-align: center;
}

.page-gdpr__contact p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333333;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  font-size: 1.2em;
  font-weight: bold;
}

.page-gdpr__link {
  color: #1A2B4C; /* Dark blue for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-gdpr__contact-image {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 20px;
  }

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

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

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

  .page-gdpr__principles-grid, .page-gdpr__implementation-grid {
    grid-template-columns: 1fr;
  }

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

  .page-gdpr__block-image {
    max-width: 100%;
  }
}

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

  .page-gdpr__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

  .page-gdpr__principle-item, .page-gdpr__implementation-item {
    padding: 20px;
  }
}