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

.page-gdpr .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-gdpr section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr section:last-of-type {
  margin-bottom: 0;
}

.page-gdpr .section-title {
  font-size: 2.5em;
  color: #2F4F4F; /* Dark Slate Gray */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

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

.page-gdpr .section-description {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #555;
}

.page-gdpr .sub-section-title {
  font-size: 1.8em;
  color: #2F4F4F;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

/* Hero Section */
.page-gdpr .hero-gdpr {
  background: linear-gradient(135deg, #2F4F4F, #1a2a2a);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr .hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  object-fit: cover;
}

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

.page-gdpr .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  color: #e0e0e0;
}

.page-gdpr .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FFD700; /* Gold */
  color: #2F4F4F; /* Dark Slate Gray */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr .cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Intro Section */
.page-gdpr .intro-section p {
  text-align: left;
}

/* Principles Section */
.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: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr .principle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-gdpr .principle-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr .principle-title {
  font-size: 1.5em;
  color: #2F4F4F;
  margin-bottom: 10px;
}

.page-gdpr .principle-text {
  font-size: 1em;
  color: #666;
  text-align: justify;
}

/* Data Collection Section */
.page-gdpr .data-collection-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.page-gdpr .data-collection-text, .page-gdpr .sharing-text {
  flex: 2;
  min-width: 300px;
}

.page-gdpr .data-collection-image, .page-gdpr .sharing-image {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr .image-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-gdpr .data-list, .page-gdpr .cookie-list, .page-gdpr .sharing-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr .data-list li, .page-gdpr .cookie-list li, .page-gdpr .sharing-list li {
  background-color: #f2f2f2;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  font-size: 1.05em;
  color: #444;
}

.page-gdpr .data-list li strong {
  color: #2F4F4F;
}

/* Data Usage Section */
.page-gdpr .usage-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-gdpr .usage-list li {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-gdpr .usage-list li:hover {
  background-color: #f2f2f2;
}

.page-gdpr .list-title {
  font-size: 1.6em;
  color: #2F4F4F;
  margin-bottom: 10px;
}

.page-gdpr .usage-list p {
  font-size: 1.05em;
  color: #555;
}

/* Rights Section */
.page-gdpr .rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr .right-item {
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr .right-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-gdpr .right-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr .right-title {
  font-size: 1.5em;
  color: #2F4F4F;
  margin-bottom: 10px;
}

.page-gdpr .right-text {
  font-size: 1em;
  color: #666;
  text-align: justify;
}

/* Security Section */
.page-gdpr .security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr .security-item {
  background-color: #2F4F4F;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr .security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr .security-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  text-align: center;
}

.page-gdpr .security-text {
  font-size: 1.05em;
  color: #e0e0e0;
  text-align: justify;
}

/* Sharing Section */
.page-gdpr .sharing-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.page-gdpr .sharing-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr .sharing-list li {
  background-color: #f2f2f2;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 4px solid #2F4F4F;
  font-size: 1.05em;
  color: #444;
}

/* Cookie Section */
.page-gdpr .cookie-section p {
  text-align: left;
}

.page-gdpr .cookie-section a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr .cookie-section a:hover {
  text-decoration: underline;
}

/* Contact GDPR Section */
.page-gdpr .contact-details {
  margin-top: 30px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #eee;
  text-align: center;
}

.page-gdpr .contact-details p {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333;
}

.page-gdpr .contact-details strong {
  color: #2F4F4F;
}

.page-gdpr .contact-details a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr .contact-details a:hover {
  text-decoration: underline;
}

/* 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;
}

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

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

.page-gdpr .faq-question h3 {
  font-size: 1.25em;
  color: #2F4F4F;
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.page-gdpr .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700; /* Gold */
  margin-left: 20px;
  transition: transform 0.3s ease;
}

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

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

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

.page-gdpr .faq-answer p {
  font-size: 1.05em;
  color: #555;
  text-align: justify;
  margin-bottom: 0;
}

.page-gdpr .faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr .faq-answer a:hover {
  text-decoration: underline;
}

/* Changes Section */
.page-gdpr .changes-section p {
  text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr .hero-title {
    font-size: 2.5em;
  }
  .page-gdpr .hero-description {
    font-size: 1.1em;
  }
  .page-gdpr .section-title {
    font-size: 2em;
  }
  .page-gdpr .sub-section-title {
    font-size: 1.6em;
  }
  .page-gdpr .principles-grid, .page-gdpr .rights-grid, .page-gdpr .security-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-gdpr .data-collection-content, .page-gdpr .sharing-content {
    flex-direction: column;
  }
  .page-gdpr .data-collection-image, .page-gdpr .sharing-image {
    order: -1; /* Image appears above text on smaller screens */
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr section {
    padding: 40px 0;
  }
  .page-gdpr .hero-gdpr {
    padding: 60px 0;
  }
  .page-gdpr .hero-title {
    font-size: 2em;
  }
  .page-gdpr .hero-description {
    font-size: 1em;
  }
  .page-gdpr .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-gdpr .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr .section-description {
    font-size: 0.95em;
  }
  .page-gdpr .sub-section-title {
    font-size: 1.4em;
  }
  .page-gdpr .principle-item, .page-gdpr .right-item, .page-gdpr .security-item {
    padding: 25px;
  }
  .page-gdpr .principle-icon, .page-gdpr .right-icon {
    width: 80px;
    height: 80px;
  }
  .page-gdpr .principle-title, .page-gdpr .right-title, .page-gdpr .security-title {
    font-size: 1.3em;
  }
  .page-gdpr .data-list li, .page-gdpr .cookie-list li, .page-gdpr .sharing-list li {
    padding: 12px 15px;
    font-size: 0.95em;
  }
  .page-gdpr .usage-list li {
    padding: 20px;
  }
  .page-gdpr .list-title {
    font-size: 1.4em;
  }
  .page-gdpr .faq-question {
    padding: 15px 20px;
  }
  .page-gdpr .faq-question h3 {
    font-size: 1.1em;
  }
  .page-gdpr .faq-toggle {
    font-size: 1.5em;
  }
  .page-gdpr .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr .hero-title {
    font-size: 1.8em;
  }
  .page-gdpr .hero-description {
    font-size: 0.9em;
  }
  .page-gdpr .section-title {
    font-size: 1.6em;
  }
  .page-gdpr .section-title::after {
    width: 60px;
  }
  .page-gdpr .sub-section-title {
    font-size: 1.2em;
  }
  .page-gdpr .principles-grid, .page-gdpr .rights-grid, .page-gdpr .security-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr .principle-icon, .page-gdpr .right-icon {
    width: 60px;
    height: 60px;
  }
  .page-gdpr .principle-title, .page-gdpr .right-title, .page-gdpr .security-title {
    font-size: 1.2em;
  }
  .page-gdpr .faq-question h3 {
    font-size: 1em;
  }
  .page-gdpr .faq-toggle {
    font-size: 1.3em;
  }
}