.main-wrapper {
  padding-bottom: 72px;
}

.home-hero {
  height: 480px;
  background-image: url('../images/hero_banner.jpg');
}

.home-hero .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero .search-tab-container {
  margin-top: 32px;
}

.home-hero h1.hero-title {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
}

.home-hero p.hero-subtitle {
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.home-trust-bar {
  display: flex;
  justify-content: space-between;
  padding-bottom: 36px;
  max-width: 800px;
  gap:20px;
}

.trust-column-logo {
  display: flex;
  gap: 10px;
}

.trust-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-title {
  color: #212121; 
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.col-center {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.home-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.home-section-header a {
  color: #b7559b;
  font-size: 16px;
  text-decoration: none;
}

.home-section-header a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .home-hero h1.hero-title {
    font-size: 48px;
  }
  .home-hero p.hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .trust-column {
    flex: 0 0 auto; 
    min-width: 200px; 
  }

  .home-hero {
    height: auto;
    padding: 80px 0;
  }

  .home-hero .search-bar-container form {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .home-hero h1.hero-title {
    font-size: 36px;
  }
  .home-hero p.hero-subtitle {
    font-size: 16px;
  }
  .home-trust-bar {
    flex-direction: column;
  }

  .home-hero .search-bar-container form {
    gap: 10px;
  }

  .home-hero .search-input,
  .home-hero .search-submit-button {
    height: 54px;
    border-radius: 14px;
  }

  .home-hero .search-input {
    font-size: 15px;
  }
}
