/* styles.css */

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

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.hero {
  background: #25D366;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  background-color: #075E54;
  color: white;
  padding: 12px 25px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}

.features {
  background: #f9f9f9;
  padding: 60px 20px;
}

.features h2,
.benefits h2 {
  text-align: center;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature img {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.benefits {
  background: #fff;
  padding: 60px 20px;
}

.benefits ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}

.benefits li {
  background: #e8f5e9;
  margin-bottom: 15px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1.1rem;
}

.cta {
  background-color: #25D366;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}

.hero {
  background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png'), #25D366;
  background-blend-mode: multiply;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}
