
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: #f7f7f7; color: #333; }

header {
  background: #ffffff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}



.logo-container img {
  height: 100px;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #25D366;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #1ca753;
}

.hero {
  padding: 6rem 2rem;
  background: #fbe8dd;
  display: flex;
  justify-content: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 3rem;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-text {
  max-width: 520px;
  text-align: left;
}

.hero-text h1 {
  font-size: 2.8rem;
  color: #202123;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.btn {
  background: #25D366;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: #1ca753;
}


form {
  max-width: 700px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

input {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

input:focus {
  outline: none;
  border-color: #25D366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}
.section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 2rem auto;
  max-width: 900px;
}

.section h2 {
  color: #25D366;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.section-feature {
  background: #d7f5d0;
  padding: 5rem 2rem;
}

.feature-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .feature-container {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-text {
  color: #202123;
}

.feature-text .subtitle {
  color: #e53874;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.feature-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.feature-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.feature-text ul li {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.feature-text ul li::before {
  content: "✔";
  color: #25D366;
  position: absolute;
  left: 0;
  top: 0;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-outline {
  padding: 0.7rem 1.4rem;
  border: 2px solid #25D366;
  color: #25D366;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: #25D366;
  color: white;
}

.feature-image img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}


footer {
  background: #202123;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

footer p { margin-bottom: 0.5rem; }
