/* style/cookies-policy.css */
.page-cookies-policy {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main color, good contrast on #0A0A0A body bg */
  background-color: #0A0A0A; /* Body background color */
  line-height: 1.6;
  font-size: 1rem;
}

.page-cookies-policy__hero-section {
  padding-top: var(--header-offset, 120px); /* Mandatory requirement from prompt */
  background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Brand colors for hero background */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.page-cookies-policy__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.page-cookies-policy__hero-image {
  width: 100%;
  max-width: 1200px; /* Example display width */
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px; /* Space between image and content */
}

.page-cookies-policy__hero-content {
  text-align: center;
  color: #0A0A0A; /* Dark text on light hero background for contrast */
  max-width: 800px;
  z-index: 1;
}

.page-cookies-policy__main-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000; /* Ensuring high contrast on hero background */
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-cookies-policy__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #333333; /* Ensuring high contrast on hero background */
}

.page-cookies-policy__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cookies-policy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-cookies-policy__section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border color */
}

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

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