
.hero {
  background-color: var(--background-secondary);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero .hero-wrapper {
  position: relative;
  background-image: url('/static/assets/images/hero2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin: 0 auto;
  padding: 180px 120px 40px 120px;
  width: 100%;
  max-width: 1200px;
  height: 800px;
  border-radius: 40px;
  overflow: hidden;
}

.hero .hero-layer {
  background: linear-gradient(rgba(10,10,10,0) 0%, rgba(10,10,10,0.4) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  z-index: 0;
}

.hero .hero-content {
  position: relative;
  height: 90%;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.hero .text-container {
  margin: 0 auto;
  width: 100%;
  max-width: 630px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .text-container .title {
  font-size: 56px;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: -1px;
}

.hero .text-container .description {
  margin: 0 auto;
  max-width: 513px;
  font-size: 1.125rem;
  line-height: 26px;
  font-weight: 400;
}

.hero .hero-search-form {
  background-color: var(--background-secondary);
  padding: 16px;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  gap: 8px;
}

.hero .hero-search-form label {
  display: flex;
  gap: 8px;
}

.hero .hero-search-form label input {
  padding-top: 5px;
  border: 0;
  font-size: 1rem;
}

.hero .hero-search-form label input::placeholder {
  color: var(--text-tertiary);
}

.hero .hero-search-form .separator {
  background-color: var(--border-primary);
  width: 1px;
 
}

.hero .hero-search-form button {
  width: 128px;
  height: 58px;
}


.section {
  padding: 80px 20px;
}

.section .section-content {
  margin: 0 auto;
  width: 100%;
  max-width: 1150px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section .section-title-description-block {
  max-width: 594px;
  margin: 0 auto;
  text-align: center;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.section .section-title {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: -1px;
}

.section .section-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 26px;
}

/* ===========================
   CARDS INFO
=========================== */

.cards-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 140px;
}

@media (max-width: 1568px) {
  .cards-info {
    gap: 20px;
  }
}

.card-info {
  background-color: #fff;
  padding: 24px;
  border: 2px solid var(--border-primary);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 285px;
}



/* ===========================
   CARDS ARTICLE
=========================== */

.cards-article {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 32px;
}

.card-article {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-article .card-article-image {
  background-size: cover;
  background-position: center;
  aspect-ratio: 1;
  border-radius: 12px;
}

.card-article-link  {

  color: var(--brand-green);
}



.faq .section-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 80px;
}

.faq .faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 24px 0 12px 0;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item:last-of-type {
  border-bottom: 0;
}

.faq-item .faq-item-title {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 500;
}

.faq-item .faq-item-content {
  padding-bottom: 12px;
  font-size: 1.125rem;
  line-height: 26px;
  color: #525252;
}


@media all and (max-width: 768px) {

  .hero {
    padding: 0;
  }

  .hero .hero-wrapper {
    background-position: center 30%;
    padding: 100px 20px;
    height: 90vh;
    border-radius: 0;
  }

  .hero .text-container .title {
    font-size: 30px;
  }

  .hero .hero-search-form {
    flex-direction: column;
    border: 1px solid var(--border-primary);
  }

  .hero .hero-search-form .separator {
    width: 100%;
    height: 1px;
  }

  .hero .hero-search-form button {
    width: 100%;
    height: 48px;
  }

  .section {
    padding: 40px 20px;
  }



  .cards-info .card-info {
    text-align: center;
    align-items: center;
 
  }
    .cards-info .card-info {
    text-align: center;
    align-items: center;
    border: solid 1px var(--brand-green);
    margin-top: 20px;
    gap: 20px;
  }

  .card-details {
    padding: 0;
    background: none;
  }

  .cards-article {
    gap: 20px;
  }

  /* FAQ MOBILE FIX */
  .faq .section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

} 

.cookie-policy {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 12px;
    z-index: 1000;
    display: none; /* Hidden by default, shown if no consent cookie is set */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }

  .cookie-policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column; /* Stack the elements vertically */
    align-items: center; /* Center the elements horizontally */
  }

  .cookie-text p {
    margin: 0;
    line-height: 1.5;
    padding-bottom: 15px; /* Add some space between text and buttons */
  }

  .answers {
    display: flex;
    flex-direction: row; /* Keep buttons in a row by default */
    gap: 10px;
    justify-content: center; /* Center buttons horizontally */
  }

  /* Style for each button */
  .cookie-button {
    padding: 10px 20px;
    font-size: 8px;
    background-color:   #2ABF71;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .cookie-button:hover {
    background-color: #2980b9;
  }

  .cookie-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.5);
  }

  /* Responsive styling */
  @media (max-width: 768px) {
    .cookie-policy-container {
      padding: 0 15px;
    }

    .answers {
      flex-direction: column; /* Stack buttons vertically on smaller screens */
      gap: 5px;
    }

    .cookie-text p {
      margin-bottom: 15px; /* Add more space below text for smaller screens */
    }
  }

