.page-cookies-policy {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

.page-cookies-policy__hero-section {
  background-color: #FFD700; /* Gold background for hero */
  color: #8B0000; /* Deep red text for contrast */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-cookies-policy__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-cookies-policy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #8B0000; /* Deep red for title */
}

.page-cookies-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333333; /* Darker text for readability */
}

.page-cookies-policy__hero-button {
  display: inline-block;
  background-color: #8B0000; /* Deep red button */
  color: #FFD700; /* Gold text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-cookies-policy__hero-button:hover {
  background-color: #b90000; /* Lighter red on hover */
}

.page-cookies-policy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0.2;
}

.page-cookies-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-cookies-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-cookies-policy__article {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-cookies-policy__article-heading {
  font-size: 2em;
  color: #8B0000; /* Deep red for headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-cookies-policy__article-heading:first-of-type {
  margin-top: 0;
}

.page-cookies-policy__article-paragraph {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-cookies-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-cookies-policy__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-cookies-policy__list-item strong {
  color: #8B0000;
}

.page-cookies-policy__image-container {
  margin: 30px 0;
  text-align: center;
}

.page-cookies-policy__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-cookies-policy__button-group {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-cookies-policy__button {
  display: inline-block;
  background-color: #8B0000; /* Deep red button */
  color: #FFD700; /* Gold text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-cookies-policy__button:hover {
  background-color: #b90000;
}

.page-cookies-policy__button--secondary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
  border: 1px solid #8B0000;
}

.page-cookies-policy__button--secondary:hover {
  background-color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-cookies-policy__hero-title {
    font-size: 2.5em;
  }

  .page-cookies-policy__hero-description {
    font-size: 1em;
  }

  .page-cookies-policy__hero-section {
    padding: 60px 15px;
  }

  .page-cookies-policy__article-heading {
    font-size: 1.5em;
  }

  .page-cookies-policy__article-paragraph,
  .page-cookies-policy__list-item {
    font-size: 0.95em;
  }

  .page-cookies-policy__content-area {
    padding: 20px 15px;
  }

  .page-cookies-policy__article {
    padding: 20px;
  }

  .page-cookies-policy__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-cookies-policy__button {
    width: 100%;
    text-align: center;
  }

  /* Mobile content image constraint */
  .page-cookies-policy__content-image {
    max-width: 100%;
    height: auto;
  }
}