/* style/gdpr.css */

/* General Page Styling */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Hero Section */
.page-gdpr__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.page-gdpr__keyword {
  color: #ffc107;
  font-weight: bold;
}

/* Content Sections */
.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-gdpr__section:nth-child(even) {
  background-color: #e9ecef;
}

.page-gdpr__heading {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-gdpr__text-content {
  flex: 1;
  max-width: 600px;
}

.page-gdpr__text-content p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-gdpr__image-wrapper {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.page-gdpr__image-wrapper--small {
  max-width: 200px;
  margin: 40px auto 0;
}

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

.page-gdpr__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 20px;
  font-size: 1.1em;
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

.page-gdpr__list strong {
  color: #0056b3;
}

/* Contact Section */
.page-gdpr__contact {
  text-align: center;
}

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

.page-gdpr__contact-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-gdpr__btn {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  color: #000;
}

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

  .page-gdpr__title {
    font-size: 2.5em;
  }

  .page-gdpr__subtitle {
    font-size: 1.1em;
  }

  .page-gdpr__heading {
    font-size: 1.8em;
  }

  .page-gdpr__content-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__text-content, .page-gdpr__image-wrapper {
    max-width: 100%;
  }

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

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

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

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__heading {
    font-size: 1.5em;
  }

  .page-gdpr__list {
    padding-left: 20px;
    font-size: 1em;
  }

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