.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f0f2f5;
}

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

.page-gdpr__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

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

.page-gdpr h1,
.page-gdpr h2,
.page-gdpr h3 {
  color: #1A2A3A;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-gdpr h1 {
  font-size: 3em;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr h2 {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr h3 {
  font-size: 1.5em;
  margin-top: 25px;
  margin-bottom: 15px;
}

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

.page-gdpr strong {
  color: #1A2A3A;
}

.page-gdpr a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #E6C200;
  text-decoration: underline;
}

/* Hero Section */
.page-gdpr__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #1A2A3A;
  overflow: hidden;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__hero-content p {
  color: #E0E0E0;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #1A2A3A;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
  background: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--secondary {
  background: #1A2A3A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__cta-button--secondary:hover {
  background: #0F1D2A;
  color: #FFD700;
  border-color: #E6C200;
}

/* Grid Layouts */
.page-gdpr__grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

/* Card Styles */
.page-gdpr__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-image {
  max-width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__card h3 {
  color: #1A2A3A;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__card p {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__card--large .page-gdpr__card-image {
  height: 300px;
}

/* Contact DPO Section */
.page-gdpr__contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}

.page-gdpr__contact-image {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__contact-link {
  color: #FFD700;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  color: #E6C200;
}

/* FAQ Section */
.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

.page-gdpr .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-gdpr .faq-question:hover {
  background: #f5f5f5;
}

.page-gdpr .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #1A2A3A;
}

.page-gdpr .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-gdpr .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #1A2A3A;
}

.page-gdpr .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #fcfcfc;
}

.page-gdpr .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.page-gdpr .faq-answer p {
  margin: 0;
  color: #555555;
  font-size: 1em;
}

.page-gdpr__faq-link {
  color: #FFD700;
  font-weight: normal;
}

.page-gdpr__faq-link:hover {
  color: #E6C200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-gdpr__grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr h1 {
    font-size: 2.5em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.3em;
  }
  .page-gdpr p {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__hero {
    padding: 60px 15px;
  }
  .page-gdpr__hero-image {
    margin-bottom: 20px;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-gdpr__grid-3,
  .page-gdpr__grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-image {
    height: 200px;
  }
  .page-gdpr__card--large .page-gdpr__card-image {
    height: 250px;
  }
  .page-gdpr .faq-question {
    padding: 15px 20px;
  }
  .page-gdpr .faq-question h3 {
    font-size: 1.1em;
  }
  .page-gdpr .faq-toggle {
    font-size: 20px;
  }
  .page-gdpr .faq-answer {
    padding: 0 20px;
  }
  .page-gdpr .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr h1 {
    font-size: 2em;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr__card-image {
    height: 180px;
  }
  .page-gdpr__card--large .page-gdpr__card-image {
    height: 200px;
  }
  .page-gdpr__contact-image {
    max-width: 300px;
  }
}