/* style/cookies-policy.css */

/* Base styles for the page */
.page-cookies-policy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light background */
  background-color: #ffffff; /* Default body background is white */
}

/* Hero Section */
.page-cookies-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #017439; /* Primary brand color for hero background */
  color: #ffffff; /* White text for dark background */
}

.page-cookies-policy__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-cookies-policy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.page-cookies-policy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-cookies-policy__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #C30808; /* Specific color for register/login type buttons */
  color: #FFFF00; /* Specific font color for register/login */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Ensure padding/border included in width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-cookies-policy__cta-button:hover {
  background: #a80707;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Content Area */
.page-cookies-policy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  color: #333333;
}

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

.page-cookies-policy__section-title {
  font-size: 2.2em;
  color: #017439; /* Primary color for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.3;
}

.page-cookies-policy__section-title--white {
  color: #ffffff; /* White text for titles on dark background sections */
}

.page-cookies-policy__sub-title {
  font-size: 1.6em;
  color: #017439;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-cookies-policy__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-cookies-policy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-cookies-policy__list-item {
  margin-bottom: 10px;
}

.page-cookies-policy__list-item strong {
  color: #017439;
}

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

.page-cookies-policy__contact-button {
  display: inline-block;
  padding: 12px 30px;
  background: #ffffff;
  color: #017439; /* Primary color for text on white background */
  border: 2px solid #017439;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Ensure padding/border included in width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-cookies-policy__contact-button:hover {
  background: #017439;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Dark section for contrast */
.page-cookies-policy__dark-section {
  background-color: #017439;
  color: #ffffff;
  padding: 60px 20px;
}

.page-cookies-policy__copyright-info {
  padding: 20px 20px;
  text-align: center;
}

.page-cookies-policy__paragraph--center {
  text-align: center;
  margin: 0;
  font-size: 0.9em;
  color: #f0f0f0;
}

/* FAQ Section */
.page-cookies-policy__faq-section {
  padding: 60px 20px;
  background-color: #f5f5f5; /* Light grey background for FAQ */
  color: #333333;
}

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