* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  background: #fff;
}

/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav a {
  margin-left: 20px;
  font-size: 14px;
  color: #000;
}

.main-nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

/* HERO */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  display: block;
}

.hero-text {
  position: absolute;
  left: 80px;
  top: 30%;
  transform: translateY(-50%);
  max-width: 500px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
}

/* CTA */
.cta {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #0a5cff;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
}

/* FOOTER */
.site-footer {
  background: #111;
  color: #ccc;
  padding: 40px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.site-footer h4 {
  color: #fff;
}

.site-footer a {
  color: #ccc;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-text {
    position: static;
    transform: none;
    padding: 30px;
  }

  .hero-text h1 {
    font-size: 32px;
  }
}
