/* style.css */
:root {
  --primary: #d35400;
  --dark: #2c3e50;
  --light: #fdfaf6;
  --font: 'Inter', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--light);
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}
header {
  text-align: center;
  padding: 0.5rem 0;
}
header img {
  height: 400px; /* very large for strong emphasis */
}
.hero {
  text-align: center;
  padding: 2rem 1rem; /* reduced top padding for tighter layout */
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}
.feature {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}
.feature h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.feature p {
  font-size: 1rem;
  color: #555;
}
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.875rem;
  color: #777;
}
