.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: 20px;
}

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3 {
  color: #8B0000; /* Deep Red */
  margin-bottom: 15px;
}

.page-gdpr h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr h2 {
  font-size: 2.2em;
  margin-top: 40px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-gdpr h3 {
  font-size: 1.6em;
  color: #8B0000;
}

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

.page-gdpr a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* 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: 60px 20px;
  background: linear-gradient(135deg, #8B0000, #FFD700);
  color: #fff;
}

.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;
}

.page-gdpr .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-gdpr .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-gdpr .hero-content h1 {
  color: #FFD700; /* Gold */
  font-size: 3.5em;
  margin-bottom: 20px;
}

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

.page-gdpr .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold */
  color: #8B0000; /* Deep Red */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

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

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

/* Section Styling */
.page-gdpr .introduction-section, .page-gdpr .principles-section, 
.page-gdpr .user-rights-section, .page-gdpr .data-protection-section, 
.page-gdpr .contact-dpo-section, .page-gdpr .policy-updates-section,
.page-gdpr .conclusion-section {
  padding: 60px 0;
}

.page-gdpr .introduction-section {
  background-color: #f0f0f0;
}

.page-gdpr .principles-section {
  background-color: #fff;
}

.page-gdpr .user-rights-section {
  background-color: #f0f0f0;
}

.page-gdpr .data-protection-section {
  background-color: #fff;
}

.page-gdpr .contact-dpo-section {
  background-color: #f0f0f0;
  text-align: center;
}

.page-gdpr .policy-updates-section {
  background-color: #fff;
}

.page-gdpr .conclusion-section {
  background-color: #8B0000;
  color: #fff;
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr .conclusion-section h2, .page-gdpr .conclusion-section p {
  color: #fff;
}

.page-gdpr .conclusion-section h2 {
  border-bottom-color: #FFD700;
}

.page-gdpr .principle-item, .page-gdpr .right-item, .page-gdpr .protection-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.page-gdpr .principle-item:hover, .page-gdpr .right-item:hover, .page-gdpr .protection-item:hover {
  transform: translateY(-5px);
}

.page-gdpr .principle-item h3, .page-gdpr .right-item h3, .page-gdpr .protection-item h3 {
  color: #8B0000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr .hero-content h1 {
    font-size: 2.8em;
  }
  .page-gdpr .hero-content p {
    font-size: 1.1em;
  }
  .page-gdpr h1 {
    font-size: 2.2em;
  }
  .page-gdpr h2 {
    font-size: 1.8em;
  }
  .page-gdpr h3 {
    font-size: 1.4em;
  }
  .page-gdpr .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-gdpr .large-cta {
    padding: 15px 40px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr .hero-section {
    padding: 40px 15px;
  }
  .page-gdpr .hero-content h1 {
    font-size: 2.2em;
  }
  .page-gdpr .hero-content p {
    font-size: 1em;
  }
  .page-gdpr h1 {
    font-size: 1.8em;
  }
  .page-gdpr h2 {
    font-size: 1.6em;
  }
  .page-gdpr h3 {
    font-size: 1.2em;
  }
  .page-gdpr .introduction-section, .page-gdpr .principles-section, 
  .page-gdpr .user-rights-section, .page-gdpr .data-protection-section, 
  .page-gdpr .contact-dpo-section, .page-gdpr .policy-updates-section,
  .page-gdpr .conclusion-section {
    padding: 30px 0;
  }
  .page-gdpr .principle-item, .page-gdpr .right-item, .page-gdpr .protection-item {
    padding: 15px;
  }
}