/* style/gdpr.css */

:root {
  --page-gdpr-primary-color: #1A2E4C;
  --page-gdpr-secondary-color: #FFD700;
  --page-gdpr-text-dark: #1A2E4C; /* Dark text for light backgrounds */
  --page-gdpr-text-light: #FFFFFF; /* Light text for dark backgrounds */
  --page-gdpr-bg-light: #F8F8F8; /* Light background */
  --page-gdpr-bg-dark: #1A2E4C; /* Dark background */
  --page-gdpr-accent-bg: #FFD700; /* Accent background */
  --page-gdpr-border-color: #E0E0E0;
}

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

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

/* Hero Section */
.page-gdpr-hero {
  background: linear-gradient(135deg, var(--page-gdpr-bg-dark) 0%, #3a4d6b 100%);
  color: var(--page-gdpr-text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr-hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-gdpr-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
}

/* General Section Styling */
.page-gdpr-section {
  padding: 60px 0;
}

.page-gdpr-section:nth-of-type(even) {
  background-color: #F0F0F0; /* Slightly different background for contrast */
}

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

.page-gdpr-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-gdpr-secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr-section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #555;
}

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

.page-gdpr-grid-item {
  background-color: var(--page-gdpr-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid var(--page-gdpr-secondary-color);
}

.page-gdpr-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-gdpr-grid-item-title {
  font-size: 1.5em;
  color: var(--page-gdpr-primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr-grid-item p {
  color: #333;
  line-height: 1.7;
}

.page-gdpr-section-image {
  display: block;
  margin: 50px auto 0;
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Security Section */
.page-gdpr-security {
  background-color: var(--page-gdpr-bg-dark);
  color: var(--page-gdpr-text-light);
}

.page-gdpr-security .page-gdpr-section-title {
  color: var(--page-gdpr-secondary-color);
}

.page-gdpr-security .page-gdpr-section-description {
  color: #E0E0E0;
}

.page-gdpr-security-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.page-gdpr-security-list li {
  background-color: #2e4363; /* Darker blue for list items */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 55px;
}

.page-gdpr-security-list li strong {
  color: var(--page-gdpr-secondary-color);
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-gdpr-security-list li::before {
  content: '✓'; /* Checkmark icon */
  position: absolute;
  left: 20px;
  top: 25px;
  color: var(--page-gdpr-secondary-color);
  font-size: 1.5em;
  font-weight: bold;
}

/* Contact Section */
.page-gdpr-contact {
  text-align: center;
}

.page-gdpr-contact-info {
  font-size: 1.2em;
  margin-top: 30px;
  color: #333;
}

.page-gdpr-contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-gdpr-contact-list li {
  display: inline-block;
}

.page-gdpr-link, .page-gdpr-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr-link {
  color: var(--page-gdpr-primary-color);
  border: 2px solid var(--page-gdpr-primary-color);
}

.page-gdpr-link:hover {
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-text-light);
}

.page-gdpr-btn {
  background-color: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-primary-color);
  border: 2px solid var(--page-gdpr-secondary-color);
}

.page-gdpr-btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: var(--page-gdpr-primary-color);
}

.page-gdpr-cta-text {
  margin-top: 40px;
  font-size: 1.1em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr-hero-title {
    font-size: 2.5em;
  }

  .page-gdpr-hero-subtitle,
  .page-gdpr-section-description,
  .page-gdpr-cta-text {
    font-size: 1em;
  }

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

  .page-gdpr-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr-security-list {
    grid-template-columns: 1fr;
  }

  .page-gdpr-link, .page-gdpr-btn {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero-title {
    font-size: 2em;
  }

  .page-gdpr-hero-subtitle {
    font-size: 0.9em;
  }

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

  .page-gdpr-grid-item-title {
    font-size: 1.3em;
  }

  .page-gdpr-contact-list {
    flex-direction: column;
    gap: 15px;
  }
}