.image-container img{
    width: 70%;
    height: auto;
    margin-left: 15%;
    border-radius: 5cap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000000;
}

/* ================= IDEA SECTION ================= */
.idea-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.idea-card {
  max-width: 1100px;
  width: 100%;
  background: linear-gradient(135deg, #1f8f3a, #1b6f32);
  border: 3px solid #0dff00;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 0 40px rgb(26, 255, 0);
}

.idea-content {
  flex: 1;
  color: #fff;
}

.idea-content h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.idea-content h2 span {
  color: #0dff00;
}

.idea-content h2 .light {
  font-weight: 400;
}

.idea-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #e8ffe8;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

.whatsapp-btn img {
  width: 22px;
}

/* IMAGE */
.idea-image {
  flex: 0.9;
  display: flex;
  justify-content: center;
}

.idea-image img {
  max-width: 380px;
  border-radius: 5cap;
}

/* ================= CTA SECTION ================= */
.cta-section {
  background: linear-gradient(180deg, #0dff00, #0dff00);
  text-align: center;
  padding: 50px 20px;
}

.cta-section .badge {
  background: #ffeb3b;
  color: #000;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 15px;
}

.cta-section h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.cta-btn {
  background: #0dff00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .idea-card {
    flex-direction: column;
    text-align: center;
  }

  .idea-content h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .idea-content h2 {
    font-size: 22px;
  }

  .cta-section h2 {
    font-size: 22px;
  }
}
