* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: linear-gradient(rgba(255,140,0,0.4), rgba(255,165,0,0.2)), url(images/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #333;
  min-height: 100vh;
  margin: 0;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 1rem 2rem;
}


.logo {
   width: 150px;
  height: auto;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
   
}    

h1 {
  padding: 5px;
  color: white;


}

.welcome-banner {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background-color: #D15F27;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  position: absolute;
  top: 0;
  left: 0;
}


.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}




.container h1 {
  flex-direction: column;
  flex-wrap: wrap-reverse;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #D15F27;
}

.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;

}

.search-form {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
}

.search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #c8e6c9;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

.search-input:focus {
  outline: none;
  border-color: #66bb6a;
}

.search-button {
  padding: 0.75rem 1.25rem;
  background-color: #43a047;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-button:hover {
  background-color: #388e3c;
}
.info-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 1rem;
}

.info-box {
  flex: 1;
  min-width: 150px;
  padding: 1rem;
  background-color: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  text-align: center;
  color: #2e7d32;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.info-box:hover {
  transform: translateY(-4px);
}

.intro-paragraph {
  max-width: 700px;
  color: white;
  margin: 14rem auto 2rem;
  padding: 0 1rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
}