body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #fff8f0;
  color: #333;
}

/* Header */
.site-header {
  background: #ff7043;
  color: #fff;
  padding: 15px 20px;
}
.site-header h1 {
  margin: 0;
}
.site-header nav a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
  font-weight: bold;
}
.site-header nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(120deg, #ffcc80, #ffab91);
  border-radius: 8px;
  margin: 20px 0;
}
.hero h2 {
  margin-bottom: 10px;
  color: #4e342e;
}
.hero p {
  margin-bottom: 20px;
}
.button {
  display: inline-block;
  background: #d84315;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.button:hover {
  background: #bf360c;
  transform: translateY(-2px);
}


/* Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease;
}
.card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.card:hover {
  transform: scale(1.03);
}
.card h3 {
  margin-top: 0;
}
@media (max-width: 600px) {
  .hero {
    padding: 30px 15px;
  }
  .grid {
    gap: 15px;
  }
}

/* Footer */
.site-footer {
  background: #ff7043;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  margin-top: 40px;
}
.site-footer a {
  color: #fff59d;
  text-decoration: none;
}
