* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  color: #333;
  font-weight: 600;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.main-content {
  display: flex;
  flex-direction: column;
}

.btn {
  padding: 0.575rem 1rem;
  background-color: #25d366;
  color: #fff;
  font-weight: 800;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.info-text {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}

.btn-contact {
  color: white;
}

@media (max-width: 370px) {
  .main-content {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
  }
}

@media (max-width: 768px) {
}

@media (min-width: 768px) {
}
