body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

a {
  color: #007bff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

.navbar {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 1.5rem 3rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #007bff;
}

.nav-links {
  margin-left: auto;
}

.nav-links a {
  margin: 0 1.5rem;
  font-weight: 500;
  color: #333;
}

.nav-links a:hover {
  color: #007bff;
}

.hero-section {
  padding: 6rem 3rem 3rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  text-align: left;
  margin-top: 70px;
}

.hero-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #222;
  margin-bottom: 1rem;
}

.brands-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem;
  justify-content: center;
}

.brand-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.brand-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.footer {
  background-color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  font-size: 1rem;
  color: #555;
  border-top: 1px solid #e0e0e0;
}