.page-cookies-policy {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-cookies-policy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-cookies-policy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-cookies-policy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

.page-cookies-policy__hero-content {
  max-width: 800px;
  margin-top: 40px;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-cookies-policy__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp as per H1 rule */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow color for prominence */
}

.page-cookies-policy__intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #FFF6D6; /* Text Main */
}

.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: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-cookies-policy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.3);
}

.page-cookies-policy__content-section {
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-cookies-policy__dark-section {
  background-color: #111111; /* Card BG, used for sections to break up background */
}

.page-cookies-policy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-cookies-policy__container--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.page-cookies-policy__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #FFD36B; /* Glow color */
  margin-bottom: 40px;
  text-align: center;
}

.page-cookies-policy__sub-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #F2C14E; /* Main color */
  margin-top: 30px;
  margin-bottom: 20px;
}