.page-cookies-policy {
  color: #FFF6D6; /* Text Main for dark body background */
  background-color: #0A0A0A; /* Body background from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-cookies-policy__hero-section {
  position: relative;
  padding-top: 10px; /* Assuming shared.css handles body padding-top */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-cookies-policy__hero-image {
  width: 100%;
  height: 500px; /* Fixed height for desktop hero */
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-cookies-policy__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover for desktop */
  display: block;
}

.page-cookies-policy__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  position: relative; /* Ensure content is above any potential background issues */
  z-index: 1;
}

.page-cookies-policy__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Clamp for responsive H1 */
  color: #F2C14E; /* Main brand color */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-cookies-policy__description {
  font-size: 1.1rem;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-cookies-policy__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #0A0A0A; /* Default section background */
}

.page-cookies-policy__dark-section {
  background-color: #111111; /* Card BG color for dark sections */
}

.page-cookies-policy__section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #FFD36B; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-cookies-policy__text-block {
  padding: 0 20px;
  margin-bottom: 30px;
}