* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #fff;
  color: #000;
}

/* TOP BAR */
.top-bar {
  background: #f5b400;
  text-align: center;
  padding: 8px;
  font-size: 13px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 70vh;
}

.hero-box {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-box h2 {
  position: absolute;
  top: 40%;
  width: 100%;
  font-size: 48px;
  font-weight: bold;
}

.hero-box p {
  position: absolute;
  top: 55%;
  width: 100%;
  font-size: 18px;
  letter-spacing: 1px;
}

.yellow { background: #f5b400; }
.red { background: #e50914; }
.orange { background: #f57c00; }

/* INTRO */
.intro {
  text-align: center;
  padding: 60px 20px;
}

.intro h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: #555;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 80px 8%;
}

.feature-box {
  width: 40%;
  text-align: center;
}

.feature-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.feature-box h3 span {
  display: block;
  font-weight: 600;
}

.intro-text {
  font-size: 12px;
  margin-bottom: 40px;
}

.feature-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 28px;
}

.divider {
  width: 1px;
  background: #cfcfcf;
  margin: 0 60px;
}

.btn {
  margin-top: 40px;
  padding: 22px 30px;
  font-size: 18px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 4px;
}

.btn.red {
  background: #ff0000;
  color: #fff;
}

.btn.yellow {
  background: #ffc107;
  color: #000;
}

.btn .icon {
  background: rgba(255,255,255,0.2);
  padding: 8px 10px;
  border-radius: 4px;
}

small {
  display: block;
  margin-top: 30px;
  font-size: 12px;
  color: #666;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }

  .feature-box {
    width: 100%;
    margin-bottom: 50px;
  }

  .divider {
    display: none;
  }
}


/* FOOTER */
footer {
  background: #b80000;
  color: #fff;
  padding: 30px 10%;
  position: relative;
}

.footer-left i {
  font-size: 20px;
  margin-right: 15px;
}

.footer-right {
  position: absolute;
  right: 10%;
  top: 30px;
  text-align: right;
}

.footer-right h3 {
  margin-top: 5px;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-box {
    height: 300px;
  }

  .features {
    flex-direction: column;
  }

  .feature-box {
    width: 100%;
    margin-bottom: 30px;
  }

  .divider {
    display: none;
  }

  .footer-right {
    position: static;
    text-align: center;
    margin-top: 20px;
  }
}
