* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: white;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  background: white;
  color: #ff7a18;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #222;
  color: white;
}

/* SECTIONS */
section {
  padding: 70px 20px;
}

h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #ff7a18;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

ul {
  text-align: left;
  max-width: 500px;
  margin: 20px auto;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 25px;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: #ff7a18;
  text-decoration: none;
  font-weight: bold;
}

/* CONTACT */
.contact-box {
  background: white;
  padding: 30px;
  display: inline-block;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-box a {
  color: #ff7a18;
  text-decoration: none;
  font-weight: bold;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 22px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

}
