/* Import font */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfaf7;
  color: #2d2d2d;
}

header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 20px 40px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}

nav a:hover {
  color: #d77b64;
}

.hero {
  background: linear-gradient(180deg, #fff5ef, #fdfaf7);
  text-align: center;
  padding: 100px 20px 60px;
}

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

.hero-text p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta-button {
  padding: 12px 28px;
  background-color: #d77b64;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #c0664f;
}

.info-section, .features, .cta-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-item h3 {
  margin-bottom: 10px;
  color: #d77b64;
}

footer {
  background-color: #fff8f3;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95rem;
  color: #888;
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 1rem;
  }
}
