.elementor-344 .elementor-element.elementor-element-1c245a7{--display:flex;--min-height:389px;--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;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-344 .elementor-element.elementor-element-323aaaa{--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;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-344 .elementor-element.elementor-element-323aaaa{--margin-top:-250px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(min-width:768px){.elementor-344 .elementor-element.elementor-element-1c245a7{--width:1000px;}}/* Start custom CSS for html, class: .elementor-element-53e2edd */body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* HERO */
.hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 60%, #0a2a4a 40%);
}

.container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

/* TEXT */
.hero-left h1 {
  font-size: 42px;
  margin: 0;
}

.hero-left span {
  color: #e53935;
}

.features {
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.features span {
  background: #f1f1f1;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 4px;
}

/* CTA BUTTONS */
.cta-buttons {
  margin-top: 15px;
}

.call-btn {
  background: #e53935;
  color: #fff;
  padding: 10px 15px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 5px;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
}

/* PRICE BOX */
.price-box {
  background: #e53935;
  color: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

/* SECTION */
.section {
  padding: 50px 20px;
  text-align: center;
}

.section.light {
  background: #f7f7f7;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.box {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* TABLE */
table {
  width: 100%;
  max-width: 600px;
  margin: auto;
  border-collapse: collapse;
}

td, th {
  border: 1px solid #ddd;
  padding: 10px;
}

/* CTA */
.cta {
  background: #0a2a4a;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

/* 🔥 MOBILE FIX */
@media (max-width: 768px) {

  .container {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    background: #0a2a4a;
    color: #fff;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
}/* End custom CSS */