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

body {
  background: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
header {
  background: #111;
  padding: 20px 0;
}

header h1 {
  color: #fff;
  font-size: 28px;
}

/* HERO */
.hero {
  background: #222;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
}

/* SECTION */
section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-title p {
  color: #666;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card h4 {
  margin-bottom: 10px;
}

/* GALLERY */
.gallery img {
  width: 100%;
  border-radius: 6px;
}

/* CONTACT */
.contact-box {
  text-align: center;
}

.contact-box p {
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  background: #111;
  color: #bbb;
  text-align: center;
  padding: 25px 0;
  margin-top: 60px;
}