/* style/cookies-policy.css */
.page-cookies-policy {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

.page-cookies-policy__hero {
  background: linear-gradient(135deg, #1A237E 0%, #303F9F 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-cookies-policy__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-cookies-policy__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for highlight */
  font-weight: bold;
}

.page-cookies-policy__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-cookies-policy__hero-image {
  width: 100%;
  max-width: 1000px;
  margin-top: 20px;
}

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

.page-cookies-policy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cookies-policy__cta-button:hover {
  background-color: #FFC107; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-cookies-policy__section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-cookies-policy__section h2 {
  font-size: 2.2em;
  color: #1A237E; /* Dark blue heading */
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  text-align: center;
}

.page-cookies-policy__section h3 {
  font-size: 1.6em;
  color: #303F9F; /* Slightly lighter blue for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-cookies-policy__section p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-cookies-policy__section ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-cookies-policy__section li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444;
}

.page-cookies-policy__section a {
  color: #1A237E; /* Dark blue links */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-cookies-policy__section a:hover {
  color: #FFD700; /* Gold on hover */
}

.page-cookies-policy__section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-cookies-policy__faq {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-cookies-policy__faq h2 {
  font-size: 2.2em;
  color: #1A237E;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  text-align: center;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-size: 1.15em;
  color: #1A237E;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e8eaf6; /* Light blue hover */
}

.faq-question h3 {
  margin: 0;
  font-size: 1.15em; /* Match parent font size */
  color: #1A237E;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold toggle */
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #1A237E; /* Dark blue when active */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background-color: #ffffff;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  margin: 0;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-cookies-policy__hero h1 {
    font-size: 2.8em;
  }
  .page-cookies-policy__hero p {
    font-size: 1.1em;
  }
  .page-cookies-policy__section h2,
  .page-cookies-policy__faq h2 {
    font-size: 2em;
  }
  .page-cookies-policy__section h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-cookies-policy__hero {
    padding: 60px 15px;
  }
  .page-cookies-policy__hero h1 {
    font-size: 2.4em;
  }
  .page-cookies-policy__hero p {
    font-size: 1em;
  }
  .page-cookies-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-cookies-policy__section,
  .page-cookies-policy__faq {
    margin: 30px auto;
    padding: 20px;
  }
  .page-cookies-policy__section h2,
  .page-cookies-policy__faq h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-cookies-policy__section h3 {
    font-size: 1.3em;
    margin-top: 25px;
  }
  .faq-question {
    padding: 15px;
    font-size: 1em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-cookies-policy__hero h1 {
    font-size: 2em;
  }
  .page-cookies-policy__section h2,
  .page-cookies-policy__faq h2 {
    font-size: 1.6em;
  }
  .page-cookies-policy__section h3 {
    font-size: 1.2em;
  }
  .page-cookies-policy__section ul {
    margin-left: 20px;
  }
}