body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f5f3f0;
  color: #333;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 1rem;
  background-color: #e0dcd5;
  margin: 0;
}

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

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #d6cfc7;
}

.hero-left {
  flex: 1;
  min-width: 250px;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

.company-name {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
}

.hero-center {
  flex: 2;
  text-align: center;
  min-width: 300px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

footer {
  background-color: #eae6e1;
  padding: 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Lato', 'Open Sans', sans-serif;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #ffb366;
}

.social-icons img {
  width: 24px;
  margin: 0 0.5rem;
  transition: transform 0.2s;
}
.social-icons img:hover {
  transform: scale(1.15);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 2rem 1rem;
    animation: fadeIn 1.2s ease;
  }
  .hero-left, .hero-center {
    min-width: 100px;
    text-align: center;
  }
  .company-name {
    font-size: 2rem;
  }
  .tagline {
    font-size: 1.3rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
