body {
  margin: 0;
  font-family: 'Rubik Mono One', sans-serif;
  background: #fff;
  color: #000;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 10%;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 10%;
  padding-top: 10%;
}

.hero-yellow {
  background: #f7d13d;
}

.hero-white {
  background: #ffffff;
}

.hero-img img {
  width: 300px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-img1 img {
  width: 500px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-text {
  max-width: 600px;
}

h1, h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background: #000;
  color: #f7d13d;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  background: #222;
}

.links a {
  margin-right: 1rem;
  text-decoration: none;
  background: #000;
  color: #f7d13d;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, .hero-img {
    max-width: 100%;
  }

  .hero-img img, .hero-img1 img {
    width: 80%;
  }
}
