body{
   font-family: "Domine", serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fdfbf5;
  color: #000;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  min-height: 100vh;
  box-sizing: border-box;
}

.container h1{
  font-weight: bold;
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.gears {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.gear-img {
  width: 30vw;
  max-width: 200px;
  height: auto;
}

.products{
  width: 90vw;
}

/* Products section */
.products p {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 1rem 0 0.5rem;
  text-align:center
}

.products ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align:left;
  width: 40%;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .gear-img {
    width: 40vw;
    max-width: 150px;
  }

  .products p,
  .products ul {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }

  .gear-img {
    width: 50vw;
    max-width: 120px;
  }

  .products p,
  .products ul {
    font-size: 0.95rem;
  }
}
