.elementor-512 .elementor-element.elementor-element-341b60f{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-3952dcf *//* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #fff8f0;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Headings */
h1, h2 {
  color: #e8660e;
}

/* Section Boxes */
section {
  margin-bottom: 40px;
  background: #fff3e6;
  padding: 25px;
  border-left: 6px solid #e8660e;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Card Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

/* Cards */
.card {
  background: #ffffff;
  border: 2px solid #ffc28f;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 calc(33.33% - 20px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-top: 0;
  color: #e8660e;
}

/* Testimonials text */
section p {
  font-size: 16px;
  line-height: 1.6;
}

/* Call to Action */
.cta {
  text-align: center;
  background: #ffb37b;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  margin-bottom: 40px;
}

.cta h2 {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 991px) {
  .card {
    flex: 1 1 48%;
  }
}

@media (max-width: 600px) {
  .card {
    flex: 1 1 100%;
  }

  section {
    padding: 20px;
  }

  .cta {
    padding: 20px;
  }

  .card-container {
    gap: 15px;
  }
}/* End custom CSS */