/* style/gdpr.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #DC143C; /* Deep Red */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-dark: #1a1a1a;
  --background-light: #f4f4f4;
  --card-bg: #2a2a2a;
  --border-color: #444444;
}

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

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

.page-gdpr-section {
  padding: 60px 0;
  text-align: center;
}

.page-gdpr-section:nth-of-type(even) {
  background-color: #222222;
}

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: bold;
}

.page-gdpr h1 {
  font-size: 3.2em;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr h2 {
  font-size: 2.5em;
  color: var(--primary-color);
}

.page-gdpr h3 {
  font-size: 1.8em;
  color: var(--primary-color);
}

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

.page-gdpr a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* 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: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1));
  overflow: hidden;
}

.page-gdpr-hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin: 0 auto 40px auto;
  object-fit: cover;
}

.page-gdpr-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr-hero h1 {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr-hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr-cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-color-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
}

.page-gdpr-secondary-button {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  margin-left: 20px;
  transition: all 0.3s ease;
}

.page-gdpr-secondary-button:hover {
  background: var(--primary-color);
  color: var(--text-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.page-gdpr-button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Lists */
.page-gdpr-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-gdpr-list li {
  background-color: var(--card-bg);
  border-left: 5px solid var(--primary-color);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.1em;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
}

.page-gdpr-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-size: 1.5em;
  margin-right: 15px;
  font-weight: bold;
}

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

.page-gdpr-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-gdpr-card-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 10px;
}

.page-gdpr-card h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-gdpr-card p {
  color: var(--text-color-light);
  font-size: 1em;
}

.page-gdpr-image-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* FAQ Section */
.page-gdpr-faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-gdpr-faq-list .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr-faq-list .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--text-color-light);
}

.page-gdpr-faq-list .faq-question:hover {
  background: #3a3a3a;
}

.page-gdpr-faq-list .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.page-gdpr-faq-list .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-gdpr-faq-list .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr-faq-list .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #222222;
  color: var(--text-color-light);
}

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

.page-gdpr-faq-list .faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr-hero h1 {
    font-size: 3em;
  }
  .page-gdpr h2 {
    font-size: 2em;
  }
  .page-gdpr h3 {
    font-size: 1.6em;
  }
  .page-gdpr-hero p {
    font-size: 1.1em;
  }
  .page-gdpr-list li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr-hero {
    padding: 60px 15px;
  }
  .page-gdpr-hero h1 {
    font-size: 2.5em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.4em;
  }
  .page-gdpr p {
    font-size: 1em;
  }
  .page-gdpr-cta-button, .page-gdpr-secondary-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 0;
  }
  .page-gdpr-button-group {
    flex-direction: column;
    gap: 10px;
  }
  .page-gdpr-list li {
    padding: 15px 20px;
  }
  .page-gdpr-card {
    padding: 25px;
  }
  .page-gdpr-faq-list .faq-question {
    padding: 15px 20px;
  }
  .page-gdpr-faq-list .faq-question h3 {
    font-size: 1.1em;
  }
  .page-gdpr-faq-list .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero h1 {
    font-size: 2em;
  }
  .page-gdpr h2 {
    font-size: 1.5em;
  }
  .page-gdpr-hero-image {
    margin-bottom: 30px;
  }
  .page-gdpr-card-image {
    width: 80px;
    height: 80px;
  }
  .page-gdpr-list li::before {
    font-size: 1.2em;
    margin-right: 10px;
  }
  .page-gdpr-faq-list .faq-question h3 {
    font-size: 1em;
  }
}