.logo a {
  text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #111827;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2563eb;
}
header button {
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 600;
}
.hero {
  background-image: url(https://uvamarketplace-s3-bucket.s3.amazonaws.com/static/images/uvahome.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 8rem 1rem;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #60a5fa;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #e5e7eb;
}
.hero button {
  background-color: #2563eb;
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
section {
  padding: 4rem 1rem;
  text-align: center;
}
section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.feature {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}
.feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}
.stat {
  text-align: center;
}
.stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}
.trust-box {
  margin-top: 2rem;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  padding: 2rem;
  display: inline-block;
}
footer {
  text-align: center;
  padding: 2rem;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.875rem;
}
