/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #faf7f6;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2f2f2f;
}

img {
  max-width: 100%;
  display: block;
}

/* Hero */
.hero {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto 40px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-image {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 16px;
}

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* Grid & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card h3 {
  margin-top: 15px;
}

/* CTA */
.cta {
  display: inline-block;
  background: #cfa6a0;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #b98f89;
}

/* Steps */
.steps {
  max-width: 600px;
  margin: 30px auto 0;
  padding-left: 20px;
}

/* Sweet table */
.sweet-table img {
  margin: 30px auto;
  border-radius: 16px;
}

/* Footer */
.footer {
  background: #2f2f2f;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
