/* style/gdpr.css */

/* Root variables for colors */
:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --card-bg: #111111;
  --main-bg-dark: #0A0A0A; /* Assuming body background is dark from shared.css */
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --header-offset: 122px; /* Default value, assumed from shared.css */
}

/* Base styles for the GDPR page */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Text Main color for overall page content */
  background-color: var(--main-bg-dark); /* Main background color for the page */
}

/* Sections */
.page-gdpr__section {
  padding: 60px 20px;
  border-bottom: 1px solid var(--border-color);
}

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

.page-gdpr__dark-section {
  background-color: var(--card-bg); /* Darker background for specific sections */
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Headings */
.page-gdpr__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-gdpr__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
  font-weight: bold;
}

.page-gdpr__faq-heading,
.page-gdpr__right-title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

/* Paragraphs and text blocks */
.page-gdpr__text-block {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-main);
}

.page-gdpr__text-block a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  min-height: 500px; /* Ensure sufficient height */
  overflow: hidden;
  text-align: center;
  background-color: var(--main-bg-dark); /* Ensure background is dark for contrast */
}