.elementor-31 .elementor-element.elementor-element-123d819{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-31 .elementor-element.elementor-element-2b8134f{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-31 .elementor-element.elementor-element-2b8134f:not(.elementor-motion-effects-element-type-background), .elementor-31 .elementor-element.elementor-element-2b8134f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#307F8D;}/* Start custom CSS for html, class: .elementor-element-406597b *//* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #0f2c46;
  background-color: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Hero / header */
.hero {
  position: relative;
  height: 60vh;
  background: url('hero-bg.jpg') center/cover no-repeat; /* change to your hero image */
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 44, 70, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
  color: white;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}
.btn-primary {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #1c6c85;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.btn-primary:hover {
  background-color: #155a6d;
}

/* Features section */
.features {
  padding: 4em 0;
  background-color: #f9f9f9;
}
.features .feature-item {
  text-align: center;
  padding: 1.5em;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.features .feature-item:hover {
  transform: translateY(-8px);
}
.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
}
.features .feature-item h3 {
  color: #1c6c85;
  margin-bottom: 0.5em;
}

/* How It Works */
.how-it-works {
  padding: 4em 0;
}
.how-it-works h2 {
  text-align: center;
  margin-bottom: 2em;
  color: #0f2c46;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2em;
}
.step {
  position: relative;
  padding: 2em 1em 1em;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: white;
}
.step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1c6c85;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
}
.step h4 {
  margin-top: 1em;
  color: #0f2c46;
  margin-bottom: 0.5em;
}

/* Video section */
.video-section {
  padding: 4em 0;
  background-color: #f1f7fc;
  text-align: center;
}
.video-section h2 {
  margin-bottom: 1.5em;
  color: #0f2c46;
}
.video-wrapper {
  max-width: 800px;
  margin: auto;
}
.video-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 8px;
}

/* CTA Order */
.cta-order {
  padding: 4em 0;
  background-color: #1c6c85;
  color: white;
  text-align: center;
}
.cta-order h2 {
  margin-bottom: 0.5em;
  font-size: 2.5rem;
}
.cta-order p {
  margin-bottom: 1em;
}
.cta-order .btn-primary {
  background-color: white;
  color: #1c6c85;
}
.cta-order .btn-primary:hover {
  background-color: #ddd;
}

/* Footer */
.site-footer {
  padding: 2em 0;
  background-color: #0f2c46;
  color: white;
  text-align: center;
}/* End custom CSS */