
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f7f7f7;
  color: #333;
}
header {
  background: linear-gradient(to bottom, rgb(60, 64, 65), rgb(192, 192, 192));
  color: white;
  padding: 2rem 1rem 6rem;
  position: relative;
}
.brand {
  font-size: 1.8rem;
  font-weight: bold;
}
#menu-toggle {
  display: none;
}
.menu-icon {
  display: none;
  font-size: 2rem;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  cursor: pointer;
}
.navbar .menu {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar a {
  color: #9c5beb;
  text-decoration: none;
  font-weight: bold;
}
.button {
  background-color: #9c5beb;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}
.section {
  padding: 40px 20px;
  text-align: center;
}
.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}
.service {
  width: 200px;
  margin: 20px;
}
.service img {
  width: 100px;
  height: 100px;
}
footer {
  background-color: #eee;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    color: white;
  }
  .navbar .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 5rem;
    right: 2rem;
    background-color: #1c1c1c;
    padding: 1rem;
    border-radius: 8px;
    z-index: 1000;
  }
  #menu-toggle:checked + .menu-icon + .navbar .menu {
    display: flex;
  }
  .navbar a {
    color: white;
    padding: 0.5rem 0;
  }
}
