/* style/cookies-policy.css */

/* Base styles for the cookie policy page */
.page-cookies-policy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0A0A0A; /* Matches custom background color */
  color: #FFF6D6; /* Matches custom text main color for dark background */
  padding-bottom: 60px; /* Space for footer */
}

/* Hero Section */
.page-cookies-policy__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Brand colors */
  padding-top: var(--header-offset, 120px); /* Account for fixed header on desktop */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-cookies-policy__hero-content {
  max-width: 900px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
  position: relative;
  z-index: 2; /* Ensure text is above any subtle background elements */
  color: #333333; /* Dark text on light gradient background for readability */
}

.page-cookies-policy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0A0A0A; /* Darker text for H1 on lighter gradient */
}

.page-cookies-policy__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333333; /* Dark text for description */
}

.page-cookies-policy__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Content Area */
.page-cookies-policy__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0A0A0A; /* Consistent dark background */
  color: #FFF6D6; /* Light text for readability */
}

.page-cookies-policy__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-cookies-policy__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 25px;
  color: #F2C14E; /* Main brand color for section titles */
  text-align: center;
}

.page-cookies-policy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #FFD36B; /* Auxiliary brand color for sub-titles */
}

.page-cookies-policy__paragraph {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #FFF6D6; /* Main text color */
}