/* style/gdpr.css */
:root {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0A1931;
  --background-light: #f4f4f4;
  --accent-color: #FFD700;
  --border-color: #e0e0e0;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

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

/* Hero Section */
.page-gdpr-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  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;
  z-index: 2;
}

.page-gdpr-hero-image {
  width: 100%;
  max-width: 800px; /* Adjust as needed */
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-gdpr-hero-content {
  text-align: center;
  width: 100%;
}

.page-gdpr-main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

.page-gdpr-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

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

/* General Section Styling */
.page-gdpr-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.page-gdpr-section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr-content-wrapper {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-gdpr-content-wrapper p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-gdpr-content-wrapper h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

.page-gdpr-list li {
  background-color: #f9f9f9;
  border-left: 5px solid var(--secondary-color);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr-list li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.4em;
}

.page-gdpr-list li p {
  margin-bottom: 0;
  font-size: 1em;
  color: var(--text-dark);
}

.page-gdpr-contact a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr-contact a:hover {
  color: var(--secondary-color);
}

/* FAQ Section */
.page-gdpr-faq {
  background-color: var(--background-light);
}

.page-gdpr-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
  border-color: var(--secondary-color);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
}

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-color: #e0e0e0;
}

.faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr-main-title {
    font-size: 2.8em;
  }

  .page-gdpr-hero-description {
    font-size: 1.15em;
  }

  .page-gdpr-section-title {
    font-size: 2.2em;
  }

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

  .page-gdpr-list li h3 {
    font-size: 1.3em;
  }

  .faq-question h3 {
    font-size: 1.15em;
  }
}

@media (max-width: 768px) {
  .page-gdpr-hero {
    padding: 40px 15px;
  }

  .page-gdpr-main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-gdpr-hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-gdpr-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }

  .page-gdpr-section {
    padding: 40px 0;
  }

  .page-gdpr-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr-content-wrapper {
    padding: 20px;
  }

  .page-gdpr-content-wrapper h3 {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-gdpr-list li {
    padding: 15px;
  }

  .page-gdpr-list li h3 {
    font-size: 1.2em;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 1.8em;
  }

  .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero-image {
    max-width: 100%;
  }

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

  .page-gdpr-hero-description {
    font-size: 0.95em;
  }

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

  .page-gdpr-section-title {
    font-size: 1.5em;
  }

  .page-gdpr-content-wrapper p {
    font-size: 0.95em;
  }

  .page-gdpr-list li h3 {
    font-size: 1.1em;
  }

  .faq-question h3 {
    font-size: 1em;
  }

  .faq-toggle {
    font-size: 1.5em;
  }

  .faq-answer p {
    font-size: 0.95em;
  }
}