body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.top-bar {
  background: #002b5c;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 14px;
  align-items: center;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  align-items: center;
  background: #f8f8f8;
}

.logo {
  height: 50px;
}

.phone {
  font-size: 24px;
  color: #333;
}

.nav {
  background: #004080;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('https://images.unsplash.com/photo-1581091012184-7ac6a9f4adf4') no-repeat center center/cover;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-text {
  color: white;
  max-width: 50%;
}

.hero-text h1 {
  font-size: 40px;
  margin: 1rem 0;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 1.5rem;
}

.tagline {
  background: #ffffff33;
  padding: 0.3rem 0.7rem;
  border-left: 4px solid white;
  font-weight: bold;
  font-size: 14px;
}

.button {
  background: #0055aa;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.hero-form {
  background: #004080;
  padding: 2rem;
  border-radius: 4px;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-form input,
.hero-form textarea {
  padding: 0.7rem;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.hero-form button {
  background: #e0e0e0;
  border: none;
  padding: 0.8rem;
  font-weight: bold;
  cursor: pointer;
}
