.elementor-44 .elementor-element.elementor-element-7f9087b{--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-44 .elementor-element.elementor-element-eb69a53{--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;}/* Start custom CSS for html, class: .elementor-element-3d9e188 *//* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2em 0;
}

/* Hero / header */
.hero-result {
  position: relative;
  height: 60vh;
  background: url('hero-result-bg.jpg') center/cover no-repeat;
}
.hero-result .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;
  padding: 0 1em;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}
.btn-primary {
  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;
}

/* Result Overview */
.result-overview {
  padding: 4em 0;
}
.result-overview h2 {
  text-align: center;
  margin-bottom: 1em;
  color: #0f2c46;
}
.overview-list {
  list-style: none;
  margin-top: 1em;
}
.overview-list li {
  margin-bottom: 1em;
  font-size: 1.1rem;
}
.image-block {
  text-align: center;
  margin-top: 2em;
}
.image-block img {
  max-width: 100%;
  border-radius: 8px;
}

/* How we deliver / process steps */
.how-we-deliver {
  background: #f8fafd;
  padding: 4em 0;
}
.how-we-deliver h2 {
  text-align: center;
  margin-bottom: 2em;
  color: #0f2c46;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2em;
}
.step {
  background: white;
  padding: 2em 1em;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.step:hover {
  transform: translateY(-8px);
}
.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.2rem;
}
.step h4 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #0f2c46;
}

/* Proof / case studies */
.proof-section {
  padding: 4em 0;
}
.proof-section h2 {
  text-align: center;
  margin-bottom: 2em;
  color: #0f2c46;
}
.case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  align-items: center;
  margin-bottom: 3em;
}
.case-study.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.case-content {
  direction: ltr;
}
.case-content h3 {
  color: #1c6c85;
  margin-bottom: 0.5em;
}
.case-content p {
  color: #333;
}
.case-img img {
  max-width: 100%;
  border-radius: 8px;
}

/* Stats section */
.stats-section {
  background: #f1f7fc;
  padding: 4em 0;
}
.stats-section h2 {
  text-align: center;
  margin-bottom: 2em;
  color: #0f2c46;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 2em;
}
.stat {
  text-align: center;
  background: white;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.stat .number {
  display: block;
  font-size: 2.5rem;
  color: #1c6c85;
  font-weight: bold;
  margin-bottom: 0.3em;
}
.stat p {
  color: #0f2c46;
}

/* FAQ section */
.faq-section {
  padding: 4em 0;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 2em;
  color: #0f2c46;
}
.faq {
  max-width: 800px;
  margin: auto;
}
.faq-item {
  margin-bottom: 1.5em;
}
.question {
  font-size: 1.2rem;
  color: #1c6c85;
  cursor: pointer;
}
.answer {
  margin-top: 0.5em;
  color: #333;
  display: none;
}
.faq-item.active .answer {
  display: block;
}

/* CTA section */
.cta-section {
  background: #1c6c85;
  color: white;
  padding: 4em 0;
  text-align: center;
}
.cta-section h2 {
  margin-bottom: 0.5em;
  font-size: 2.5rem;
}
.cta-section p {
  margin-bottom: 1em;
  font-size: 1.1rem;
}
.cta-section .btn-primary {
  background-color: white;
  color: #1c6c85;
}
.cta-section .btn-primary:hover {
  background-color: #ddd;
}

/* Footer */
.site-footer {
  background: #0f2c46;
  color: white;
  text-align: center;
  padding: -2em -2em;
}
.site-footer p {
  font-size: 0.9rem;
}/* End custom CSS */