.elementor-193 .elementor-element.elementor-element-f65bcaf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}body.elementor-page-193 .container{max-width:1290px;}body.elementor-page-193 .elementor-section.elementor-section-boxed>.elementor-container{max-width:1290px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-09f509e */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f7efe6;
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
}

.badge {
  display: inline-block;
  background: #ffe1d2;
  color: #ff6b2c;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.hero-content h1 span {
  color: #ff6b2c;
}

.hero-content p {
  font-size: 18px;
  color: #555;
  max-width: 520px;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.primary {
  background: #ff6b2c;
  color: #fff;
}

.btn.primary:hover {
  background: #e85b20;
}

.btn.outline {
  border: 2px solid #ff6b2c;
  color: #ff6b2c;
}

.btn.outline:hover {
  background: #ff6b2c;
  color: #fff;
}

/* FEATURES */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 15px;
  color: #2f7d32;
  font-weight: 500;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 15px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 15px;
  }
}/* End custom CSS */