:root {
  --main-color: #11A84E;
  --accent-color: #22C768;
  --button-gradient-start: #2AD16F;
  --button-gradient-end: #13994A;
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-cookies-policy {
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--background); /* #08160F */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-cookies-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; 
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-cookies-policy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-cookies-policy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 8px;
  margin-top: 100px; /* Push content down from top to avoid header overlap */
}

.page-cookies-policy__main-title {
  font-weight: bold;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-cookies-policy__intro-text {
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-cookies-policy__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%); /* #2AD16F to #13994A */
  color: var(--text-main); /* #F2FFF6 */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-cookies-policy__cta-button:hover {
  background: linear-gradient(180deg, var(--button-gradient-end) 0%, var(--button-gradient-start) 100%);
}

.page-cookies-policy__cta-button--secondary {
  background: var(--deep-green); /* #0A4B2C */
  border: 1px solid var(--border); /* #2E7A4E */
}

.page-cookies-policy__cta-button--secondary:hover {
  background: var(--border);
}

/* Content Sections */
.page-cookies-policy__content-section {
  padding: 60px 0;
  color: var(--text-main); /* #F2FFF6 */
}

.page-cookies-policy__content-section:nth-of-type(odd) {
  background-color: var(--background); /* #08160F */
}

.page-cookies-policy__content-section:nth-of-type(even) {
  background-color: var(--card-bg); /* #11271B */
}

.page-cookies-policy__dark-bg-section {
  background-color: var(--card-bg);
}

.page-cookies-policy__section-title {
  color: var(--gold); /* #F2C14E */
  font-size: clamp(2em, 5vw, 2.2em);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-cookies-policy p {
  margin-bottom: 20px;
  color: var(--text-main); /* #F2FFF6 */
}

.page-cookies-policy__image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-cookies-policy__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-cookies-policy__list-item {
  background-color: var(--deep-green); /* #0A4B2C, slightly different dark green */
  border: 1px solid var(--divider); /* #1E3A2A */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-cookies-policy__list-item:last-child {
  margin-bottom: 0;
}

.page-cookies-policy__list-title {
  color: var(--text-main); /* #F2FFF6 */
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

/* FAQ Section */
.page-cookies-policy__faq-section {
  padding: 60px 0;
  background-color: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

.page-cookies-policy__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-cookies-policy__faq-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--divider); /* #1E3A2A */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-cookies-policy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main); /* #F2FFF6 */
  cursor: pointer;
  background-color: var(--card-bg); /* #11271B */
  transition: background-color 0.3s ease;
}

.page-cookies-policy__faq-question:hover {
  background-color: rgba(17, 39, 27, 0.8); /* Slightly lighter on hover */
}

.page-cookies-policy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold); /* #F2C14E */
}

.page-cookies-policy__faq-answer {
  padding: 0 25px 20px;
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 1em;
  line-height: 1.6;
}

/* Details element specific styling for FAQ */
.page-cookies-policy__faq-item[open] > .page-cookies-policy__faq-question {
  background-color: rgba(17, 39, 27, 0.8);
}
.page-cookies-policy__faq-item summary {
  list-style: none; /* Remove default marker */
}
.page-cookies-policy__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit browsers */
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-cookies-policy {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-cookies-policy__hero-content {
    padding: 20px;
    margin-top: 50px;
  }

  .page-cookies-policy__main-title {
    font-size: 1.8em;
  }

  .page-cookies-policy__intro-text {
    font-size: 1em;
  }

  .page-cookies-policy__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-cookies-policy__section-title {
    font-size: 1.8em;
  }

  .page-cookies-policy__content-section,
  .page-cookies-policy__faq-section {
    padding: 40px 0;
  }

  .page-cookies-policy__container {
    padding: 0 15px;
  }

  .page-cookies-policy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-cookies-policy__list-item {
    padding: 15px;
  }

  .page-cookies-policy__faq-item {
    padding: 0;
  }

  .page-cookies-policy__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-cookies-policy__faq-answer {
    padding: 0 20px 15px;
  }
}