/* style/gdpr.css */

/* Variables for theme colors */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Midnight Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212; /* Body background */
  --card-bg-dark-mode: rgba(255, 255, 255, 0.1);
  --card-border-dark-mode: rgba(255, 255, 255, 0.2);
}

/* Page-specific styles for GDPR compliance page */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency if body background is overridden */
  padding-top: 120px; /* Desktop padding for fixed header */
}

/* General container for content sections */
.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-gdpr__section-title,
.page-gdpr__main-title,
.page-gdpr__faq-title,
.page-gdpr__brand-title,
.page-gdpr__blog-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__sub-title {
  color: var(--text-light);
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.page-gdpr p {
  margin-bottom: 1em;
  color: #f0f0f0; /* Slightly off-white for readability */
}

.page-gdpr a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.page-gdpr a:hover {
  color: #ffd94a; /* Lighter gold on hover */
  text-decoration: underline;
}

/* List styles */
.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 1em;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-gdpr__list li {
  margin-bottom: 0.5em;
}

/* 🚨 Video Area Styles (Must strictly comply) */
.page-gdpr__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust for fixed header */
  background-color: #0d0d0d; /* Slightly darker background for video section */
}

.page-gdpr__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}