body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #fff;
  /* background-image: url("https://images.unsplash.com/photo-1574680096145-d05b474e2155?q=80&w=2069&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: fill;
  background-position: 95% 50%; */
}

header {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 1rem;
  row-gap: 1rem;
  background-color: #092c42;
}

#logo-container {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}

#logo {
  /* border-radius: 8px; */
  width: 164px;
}

.container {
  width: 100%;
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0;
  /* backdrop-filter: blur(2.5px) brightness(0.5); */
}

.hero {
  display: none;
  font-family: Poppins, Arial, Helvetica, sans-serif;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem 0.25rem;
}

footer a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
  font-weight: 100;
  color: #092c42;
  text-decoration: none;
}

footer a:hover {
  color: #0f0faf;
}

/* Media query for desktops */
@media screen and (min-width: 1024px) {
  .container {
    height: calc(100vh - 120px);
    justify-content: space-between;
    align-items: center;
    overflow-y: hidden;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  #logo-container {
    width: 30%;
  }

  #logo {
    width: 180px;
  }

  typebot-standard {
    min-width: 50%;
    margin-right: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #092c42;
    text-align: center;
    padding: 4rem 2rem;
    width: 100%;
    /* backdrop-filter: blur(5px) brightness(0.7); */
    /* background-image: url("https://images.unsplash.com/photo-1536922246289-88c42f957773?q=80&w=2104&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: 95% 50%; */
  }
  .hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
    word-spacing: 0.25rem;
    max-width: 85%;
    /* backdrop-filter: blur(5px) brightness(0.7); */
  }
  .hero p {
    font-size: 1.25rem;
    max-width: 75%;
    margin: 0 auto 1rem;
    /* backdrop-filter: blur(5px) brightness(0.7); */
  }
  .hero img {
    width: 75%;
    margin: 0 auto;
  }
  .features {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto;
  }
  .feature-card {
    flex: 1;
    background: #f0f0f3;
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .feature-card img {
    width: 48px;
    margin-bottom: 1rem;
  }
  .feature-card h3 {
    color: #092c42;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .feature-card p {
    font-size: 0.9rem;
    background-color: transparent;
    color: #555;
    backdrop-filter: none;
  }
}
