body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #ddeceb;
}
.header-container {
  background-color: white;
  padding: 20px 0px;
  border-bottom: 2px solid #bacdcc;
  position: sticky;
  top: 0;
}
header {
  background-color: white;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 20px;
  font-family: "Bitter", serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a {
  text-decoration: none;
}
header ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}
header ul li {
  padding: 0px;
  list-style-type: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}
header img {
  width: 28px;
  position: relative;
  top: 4px;
  margin-right: 5px;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  gap: 4rem;
  flex-wrap: wrap;
  background: #ddeceb;
}
header .btn-primary {
  padding: 6px 20px;
  border-radius: 8px;
}
.nav-links li .btn-primary {
  color: white;
}
.hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image img {
  max-width: 430px;
  height: auto;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-text);
  font-family: "Bitter", serif;
  text-align: center;
  line-height: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  width: 70%;
  margin: 0 auto;
  margin-top: 30px;
}

.hero-buttons a {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.btn-primary {
  background-color: #1b322e;
  color: white;
  box-shadow: 6px 6px 0 rgba(27, 50, 46, 0.5);
}

.btn-secondary {
  background-color: #fff;
  color: #333;
  border: 2px solid #f9f9f9;
  box-shadow: 6px 6px 0 rgba(27, 50, 46, 0.5);
}

.btn-secondary:hover {
  background-color: #ccc;
}

.bullet-point {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  gap: 100px;
  align-items: center;
  padding: 100px 0px;
}
.bullet-point h2 {
  font-size: 2.5rem;
  line-height: 2.7rem;
}
.bullet-point img {
  max-width: 100%;
}
.bullet-point div {
  flex: 1;
}
.bullet-point.reverse {
  flex-direction: row-reverse;
}
.faq-section {
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 1rem;
  font-family: "Poppins", sans-serif;
}

.faq-header {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.faq-question {
  width: 100%;
  background: #fff;
  color: #000;
  border-radius: 20px;
  font-size: 1.1rem;
  padding: 1.5rem 1.5rem;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 4px 0 #000;
  transition: background 0.2s ease;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;

  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.faq-answer p {
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
footer {
  background-color: #1b322e;
  padding: 40px;
  color: white;
  font-size: 14px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
}
.footer-container img {
  width: 25px;
  position: relative;
  top: 5px;
  margin-right: 5px;
}
.footer-container ul li {
  list-style-type: none;
  display: inline-block;
}
.footer-container ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  gap: 30px;
}
.footer-container a {
  color: white;
  text-decoration: none;
}
.question-container {
  display: flex;
  justify-content: space-between;
}
.chevron-icon {
  transition: transform 0.3s ease;
}

.faq-item.open .chevron-icon {
  transform: rotate(180deg);
}
.legal-section {
  max-width: 1000px;
  margin: 0 auto;
}
.text-section {
  background-color: white;
  padding: 40px 50px;
  margin: 40px 0px;
  border-radius: 8px;
}
.flag-sprite {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 0.4rem;
  background-color: white;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Bitter", serif;
  font-size: 20px;
}
.logo a {
  color: #000;
}
.logo img {
  width: 28px;
  margin-top: 4px;
}

nav {
  position: relative;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #000;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .bullet-point,
  .bullet-point.reverse,
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-image img {
    max-width: 300px;
    height: auto;
  }
  .hero {
    padding: 3rem 2rem;
    gap: 30;
  }
  .hero-image {
    flex: 1 1 100px;
    text-align: center;
  }
  .hero-text {
    flex: 1 1 100px;
  }
  .bullet-point img {
    max-width: 80%;
  }
  .bullet-point {
    gap: 30px;
  }
  .bullet-point h2,
  .bullet-point p {
    max-width: 90%;
    margin: 0 auto;
  }
  header {
    padding: 0px 30px;
  }
  header img {
    width: 10px;
    position: relative;
    margin-right: 2px;
    top: 0px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-container ul,
  .footer-container ul li {
    display: block;
  }
  .footer-container ul li {
    margin-bottom: 10px;
  }
  .footer-container ul {
    margin-top: 30px;
  }
  .legal-section {
    max-width: 95%;
  }
  .text-section {
    padding: 20px 25px;
  }

  .nav-links {
    display: flex;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: white;
    top: 50px;
    right: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.3s ease;
  }

  .nav-links.show {
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: block;
    color: #1b322e;
  }
}
