
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #111;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid #e0e0e0;
}
.logo img {
  height: 50px;
}
nav {
  display: flex;
  gap: 20px;
}
nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
.actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.login, .contact {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
.cta {
  background-color: #1e1e5a;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.cta.large {
  font-size: 1rem;
  padding: 12px 24px;
  margin-top: 20px;
  display: inline-block;
}
.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  background-image: url("../assets/bg-hero.png");
  background-color: rgb(248, 244, 250);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content h1 {
  font-size: 2.5rem;
  max-width: 900px;
  margin: 0 auto 15px;
}
.matterport {
  padding: 60px 40px;
  text-align: center;
}
.matterport h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
}
.iframe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.iframe-grid iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .actions {
    flex-wrap: wrap;
  }
  .iframe-grid iframe {
    height: 300px;
  }
}


.solutions {
  padding: 60px 40px;
  text-align: center;
}

.solutions h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.solutions p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}
