* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f7f3ef;
  color: #1f1f1f;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: white;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo img {
  width: 32px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.cta-button {
  background: #6f4e37;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px;
  background: linear-gradient(to right, #f7f3ef, #e9dfd6);
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #555;
}

.hero-buttons .btn {
  padding: 12px 18px;
  margin-right: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: #6f4e37;
  color: white;
}

.secondary {
  border: 2px solid #6f4e37;
  color: #6f4e37;
}

.hero-tags {
  margin-top: 20px;
}

.hero-tags span {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
  color: #444;
}

/* SECTIONS */
.section {
  padding: 70px 40px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.dark {
  background: #2b1d16;
  color: white;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.dark .card {
  background: #3a261d;
  color: white;
}

/* CTA */
.cta {
  padding: 70px 40px;
  text-align: center;
  background: #f0e6dd;
}

.cta form {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}

.cta input,
.cta textarea {
  margin: 8px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.cta button {
  background: #6f4e37;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #1f1f1f;
  color: white;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }
}
.card ul {
  margin-top: 10px;
  padding-left: 18px;
}

.card ul li {
  font-size: 14px;
  margin-bottom: 5px;
  color: #444;
}

a.cta-button {
  display: inline-block;
}