/* style/gdpr.css */

:root {
  --primary-color: #007bff; /* Deep Blue */
  --secondary-color: #28a745; /* Green */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f8f9fa;
  --background-dark: #00274d; /* Darker blue for contrast */
  --border-color: #e0e0e0;
  --accent-gold: #ffc107; /* Gold for VIP/bonus highlights */
}

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

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

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

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

.page-gdpr h1 {
  font-size: 3.2em;
  color: var(--text-color-light);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.page-gdpr h2 {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-gdpr h3 {
  font-size: 1.8em;
  color: var(--text-color-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr h4 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-gdpr__text-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.page-gdpr__text-link:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.page-gdpr__highlight {
  font-weight: bold;
  color: var(--primary-color);
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
  color: var(--text-color-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: 1;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  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%;
  padding: 0 20px;
}

.page-gdpr__hero-content p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  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: #218838; /* Darker green */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--large {
  padding: 18px 50px;
  font-size: 1.4em;
}

/* Intro Section */
.page-gdpr__intro {
  background-color: var(--background-light);
}

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

/* Principles Section */
.page-gdpr__principles {
  background-color: #e9ecef;
}

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

.page-gdpr__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--primary-color);
}

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

.page-gdpr__card-title {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

/* Rights Section */
.page-gdpr__rights {
  background-color: var(--background-light);
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__rights-list li {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-left: 6px solid var(--secondary-color);
}

.page-gdpr__list-title {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__callout-text {
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: var(--primary-color);
  font-weight: 500;
}

/* Security Section */
.page-gdpr__security {
  background-color: #e9ecef;
}

.page-gdpr__security-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__security-features li {
  background-color: #ffffff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: flex-start;
}

.page-gdpr__icon {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-right: 15px;
  flex-shrink: 0;
  line-height: 1;
  font-weight: bold;
}

.page-gdpr__security-features li strong {
  color: var(--primary-color);
}

/* Contact Section */
.page-gdpr__contact {
  background-color: var(--background-light);
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.page-gdpr__contact-list li {
  background-color: #ffffff;
  padding: 18px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border-left: 4px solid var(--primary-color);
  font-size: 1.1em;
}

/* FAQ Section */
.page-gdpr__faq {
  background-color: #f0f4f7;
  padding-bottom: 80px;
}

.page-gdpr__faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--text-color-dark);
  flex-grow: 1;
  text-align: left;
}

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

.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: #f9f9f9;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

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

/* Call to Action Section */
.page-gdpr__call-to-action {
  background: linear-gradient(135deg, var(--secondary-color), #218838);
  color: var(--text-color-light);
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__image-promo {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-gdpr__call-to-action .page-gdpr__section-title {
  color: var(--text-color-light);
  margin-bottom: 25px;
}

.page-gdpr__call-to-action p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-gdpr__call-to-action .page-gdpr__highlight {
  color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr 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__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-gdpr__cta-button--large {
    padding: 15px 40px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__hero-section {
    padding: 60px 15px 30px;
  }
  .page-gdpr h1 {
    font-size: 2em;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr h3 {
    font-size: 1.3em;
  }
  .page-gdpr__hero-image {
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .page-gdpr__card {
    padding: 25px;
  }
  .page-gdpr__rights-list li, .page-gdpr__security-features li, .page-gdpr__contact-list li {
    padding: 15px 20px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-gdpr__image-promo {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__container {
    padding: 15px;
  }
  .page-gdpr h1 {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.4em;
  }
  .page-gdpr h3 {
    font-size: 1.2em;
  }
  .page-gdpr p {
    font-size: 0.95em;
  }
  .page-gdpr__cta-button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-gdpr__hero-content p {
    font-size: 1em;
  }
}