/* style/gdpr.css */

/* General Page Styles */
.page-gdpr {
  font-family: Arial, sans-serif;
  color: #FFF3E6; /* Text Main color for dark backgrounds */
  background-color: #0D0E12; /* Background color */
  line-height: 1.6;
}

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

/* Section Styling */
.page-gdpr__section {
  padding: 40px 0;
}

/* Section Titles */
.page-gdpr__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFB04D; /* Glow color for titles */
}

/* Text Blocks */
.page-gdpr__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-gdpr__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  background-color: #0D0E12;
  display: flex;
  flex-direction: column; /* Ensure image is above text */
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1200px; /* Max width for the image container */
  margin-bottom: 20px;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 15px 40px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(28px, 4vw, 48px); /* Clamp for H1 font size */
  font-weight: 700;
  margin-bottom: 20px;
  color: #FF8C1A;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #FFF3E6;
}

/* CTA Buttons */
.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}