/* style/gdpr.css */
:root {
  --primary-color: #CC0000;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #222222;
  --border-color: #e0e0e0;
}

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

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

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

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

.page-gdpr h1,
.page-gdpr h2,
.page-gdpr h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr h1 {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--text-light);
}

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

.page-gdpr h3 {
  font-size: 1.7em;
  font-weight: 600;
  color: var(--text-dark);
}

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

.page-gdpr ul,
.page-gdpr ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-gdpr ul li,
.page-gdpr ol li {
  margin-bottom: 10px;
  font-size: 1em;
}

/* 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, var(--primary-color) 0%, #a30000 100%); /* Darker red gradient */
  color: var(--text-light);
  overflow: hidden;
}

.page-gdpr-hero .page-gdpr-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-gdpr-hero-content p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.2em;
  line-height: 1.8;
  color: var(--text-light);
}

.page-gdpr-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--text-dark);
  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);
}

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

.page-gdpr-cta-bottom {
  margin-top: 40px;
}

/* Image content styles */
.page-gdpr-image-content {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

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

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

.page-gdpr-feature-icon {
  width: 120px; /* Increased size for content images */
  height: 120px; /* Increased size for content images */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-gdpr-feature-item h4 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-gdpr-feature-item p {
  font-size: 1em;
  color: #555555;
}

/* User Rights List */
.page-gdpr-rights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-gdpr-right-item {
  background-color: #ffffff;
  padding: 30px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.page-gdpr-right-item h3 {
  text-align: left;
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-gdpr-right-item p {
  font-size: 1em;
  color: #555555;
  text-align: left;
}

/* Contact Info */
.page-gdpr-contact-info {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
}

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

.page-gdpr-contact-info strong {
  color: var(--primary-color);
}

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

.page-gdpr .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.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.25em;
  color: var(--text-dark);
  text-align: left;
  flex-grow: 1;
}

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

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

.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: var(--bg-light);
  color: #555555;
}

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

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

/* Conclusion Section */
.page-gdpr-conclusion {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, var(--primary-color), #8d0000);
  color: var(--text-light);
}

.page-gdpr-conclusion h2 {
  color: var(--secondary-color);
}

.page-gdpr-conclusion p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 1.15em;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr h1 {
    font-size: 2.4em;
  }
  .page-gdpr h2 {
    font-size: 2em;
  }
  .page-gdpr h3 {
    font-size: 1.5em;
  }
  .page-gdpr-hero-image {
    max-width: 600px;
  }
  .page-gdpr-features-grid,
  .page-gdpr-rights-list {
    grid-template-columns: 1fr;
  }
  .page-gdpr-feature-icon {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .page-gdpr-section {
    padding: 40px 0;
  }
  .page-gdpr-hero {
    padding: 60px 15px;
  }
  .page-gdpr-hero-image {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .page-gdpr h1 {
    font-size: 2em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.3em;
  }
  .page-gdpr p {
    font-size: 1em;
  }
  .page-gdpr-cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-gdpr-feature-item,
  .page-gdpr-right-item {
    padding: 20px;
  }
  .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: 15px 20px;
  }
  .page-gdpr-conclusion {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-gdpr h1 {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr h3 {
    font-size: 1.2em;
  }
  .page-gdpr-hero-content p {
    font-size: 1em;
  }
  .page-gdpr-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr-feature-icon {
    width: 80px;
    height: 80px;
  }
}