/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #1a1a1a; /* Ensure consistency with body background */
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  background-color: #0A2239; /* Main brand color for hero background */
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  margin-top: 0;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: 42px;
  font-weight: bold;
  color: #FFD700; /* Auxiliary brand color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__intro-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-gdpr__hero-image-main {
  width: 100%;
  height: auto;
  max-width: 900px; /* Constrain hero image width */
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Content Section */
.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Dark background for content */
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #FFD700; /* Auxiliary brand color for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-gdpr__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-gdpr ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-gdpr ul li {
  margin-bottom: 8px;
  color: #e0e0e0;
}

.page-gdpr strong {
  color: #ffffff;
}

.page-gdpr__image-text-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-gdpr__image-inline {
  flex: 1;
  min-width: 300px;
  max-width: 45%; /* Adjust for spacing */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-gdpr__text-block {
  flex: 1;
  min-width: 300px;
  max-width: 50%; /* Adjust for spacing */
}

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

.page-gdpr__card {
  background-color: #2a2a2a; /* Slightly lighter dark background for cards */
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1); /* Subtle border with accent color */
}

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

.page-gdpr__card-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

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