.elementor-505 .elementor-element.elementor-element-1bd522c{--display:flex;}.elementor-505 .elementor-element.elementor-element-1bd522c.e-con{--flex-grow:0;--flex-shrink:0;}.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 );}@media(min-width:768px){.elementor-505 .elementor-element.elementor-element-1bd522c{--width:174.526%;}}/* Start custom CSS for text-editor, class: .elementor-element-19a64bc *//* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f9f9f9;
}

/* Section Containers */
section {
  padding: 60px 20px;
}

h1, h2, h3 {
  color: #1a1a1a;
  margin-bottom: 20px;
}

a {
  color: #1748aa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #1748aa, #2471c6);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: auto;
  font-size: 1.2rem;
}

/* Benefits Section */
.benefits {
  background-color: #ffffff;
  text-align: center;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.benefit {
  background-color: #eef4fb;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  width: 300px;
  text-align: left;
  transition: transform 0.2s ease;
}

.benefit:hover {
  transform: translateY(-5px);
}

/* Services Section */
.services {
  background-color: #f3f7fc;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.service {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  width: 300px;
  text-align: left;
  transition: transform 0.2s ease;
}

.service:hover {
  transform: translateY(-5px);
}

/* Contact Section */
.contact {
  background-color: #1748aa;
  color: white;
  text-align: center;
}

.contact p {
  margin-top: 20px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefits-grid,
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefit,
  .service {
    width: 90%;
  }

  .hero-content {
    font-size: 1rem;
  }
}/* End custom CSS */