/* style/cookies-policy.css */

/* Base styles for the cookie policy page */
.page-cookies-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: transparent; /* Inherit from body or shared, will be handled by specific sections */
}

/* Header offset for fixed header */
.page-cookies-policy__hero-section {
  padding-top: var(--header-offset, 120px); /* Apply header offset to the first section */
}

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

.page-cookies-policy__section {
  padding: 60px 0;
}

/* Dark background sections */
.page-cookies-policy__dark-bg {
  background-color: var(--color-black, #000000); /* Assuming --color-black is defined in shared.css */
  color: #ffffff;
}

/* Light background sections */
.page-cookies-policy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-cookies-policy__hero-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-cookies-policy__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff; /* Ensure contrast on dark background */
}

.page-cookies-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly lighter for readability */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-cookies-policy__hero-image-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-cookies-policy__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.page-cookies-policy__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit; /* Inherit from section's color */
}