/* GLOBAL RESET */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
}

/* HEADERS */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

/* PARAGRAPHS */
p {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* LINKS */
a {
  color: #222;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/* BUTTONS */
.button {
  display: inline-block;
  padding: 12px 24px;
  background: #222;
  color: #fff !important;
  border-radius: 4px;
  margin-top: 10px;
}
.button:hover {
  opacity: 0.7;
}

/* GRID SYSTEM */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* IMAGE STYLE */
img {
  width: 100%;
  border: 1px solid #eee;
}

/* HERO BANNER */
.hero {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}

/* FOOTER */
footer {
  margin-top: 60px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
  font-size: 14px;
}
