* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 800px;
}

.logo {
  width: 350px;
  margin-bottom: 10px;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 1px;
}

h1 span {
  font-weight: 700;
}

.logo-main {display: none;}

.slogan {
font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-weight: 800;
}

.construction {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #777;
}

footer {
  padding-top: 25px;
}

.contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.contact-item a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  color: #007b5e;
}

.icon {
  width: 22px;
  height: 22px;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.sublogo {
  height: 60px;
  opacity: 0.9;
}

.gmail , .whatsapp {
  display: block;
  width: 32px;
  height: 32px;
  background-size: cover;
}

.gmail {background-image: url(img/gmail-icon.png);}
.whatsapp {background-image: url(img/wp-icon.png);}
