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

.app {
  text-align: center;
}

.nav {
  color: #fff;
  z-index: 1000;
  background: #000000b3;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  right: 0;
}

.nav ul {
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.nav ul li {
  cursor: pointer;
  transition: color .3s;
}

.nav ul li:hover {
  color: #f0a500;
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
  background: url("intro-bg.74713194.jpg") center / cover no-repeat;
  width: 100%;
  height: 100%;
}

.hero-text {
  color: #fff;
  background: #00000080;
  border-radius: 10px;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.introduction {
  text-align: center;
  background: #f9f9f9;
  padding: 50px 20px;
}

.introduction h2 {
  margin-bottom: 20px;
}

.introduction p {
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.services {
  padding: 40px 20px;
}

.services h2 {
  margin-bottom: 20px;
}

.service-list {
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  display: flex;
}

.service-item {
  text-align: center;
  max-width: 200px;
}

.service-icon {
  object-fit: cover;
  border: 2px solid #f0a500;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  transition: transform .3s;
}

.service-icon:hover {
  transform: scale(1.1);
}

.contact {
  color: #fff;
  text-align: center;
  background: #333;
  padding: 50px 20px;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact-list {
  text-align: left;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.contact-list li {
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  display: flex;
}

.contact-list a {
  color: #f0a500;
  font-weight: bold;
  text-decoration: none;
  transition: color .3s, text-decoration .3s;
}

.contact-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-icon {
  color: #f0a500;
  font-size: 20px;
}
/*# sourceMappingURL=index.4d663569.css.map */
