
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  margin-right: 2px;
}

nav a {
  margin-left: 10px;
  text-decoration: none;
  color: black;
  font-weight: 500;
}

main {
  text-align: center;
  margin-top: 60px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 40px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 400px;
  gap: 15px;
}

.quote-form input,
.quote-form select {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 4px;
}

.quote-form input:hover,
.quote-form select:hover {
  box-shadow: 0 0 10px rgba(255, 92, 0, 0.3);
  transition: box-shadow 0.2s ease;
}

button {
  padding: 14px;
  background-color: black;
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.6);
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 92, 0, 0.8);
}

footer {
  margin-top: 60px;
  text-align: center;
  font-size: 0.9rem;
  padding-bottom: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  color: black;
}
