*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f5f7fa;
  color:#222;
}

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
}

.top-bar{
  background:#c01818;
  color:#fff;
  text-align:center;
  padding:10px;
  font-size:14px;
  font-weight:600;
}

header{
  background:#fff;
  padding:18px 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  font-size:34px;
  font-weight:800;
  color:#c01818;
}

.header-btn{
  background:#c01818;
  color:#fff;
  text-decoration:none;
  padding:12px 24px;
  border-radius:40px;
  font-weight:700;
  transition:0.3s;
}

.header-btn:hover{
  background:#930f0f;
}

.hero{
  padding:80px 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  flex-wrap:wrap;
  background:linear-gradient(to right,#ffffff,#fff1f1);
}

.hero-text{
  flex:1;
  min-width:300px;
}

.hero-text h1{
  font-size:58px;
  line-height:1.1;
  margin-bottom:20px;
  color:#111;
}

.hero-text p{
  font-size:19px;
  line-height:1.7;
  color:#555;
  margin-bottom:30px;
}

.hero-btn{
  display:inline-block;
  background:#c01818;
  color:#fff;
  text-decoration:none;
  padding:16px 34px;
  border-radius:50px;
  font-size:18px;
  font-weight:700;
  transition:0.3s;
}

.hero-btn:hover{
  background:#930f0f;
  transform:translateY(-2px);
}

.hero-image{
  flex:1;
  min-width:600px;
  text-align:center;
}

.hero-image img{
  width:100%;
  max-width:600px;
  border-radius:20px;
}

.steps-section{
  padding:80px 7%;
  background:#fff;
}

.section-heading{
  text-align:center;
  margin-bottom:60px;
}

.section-heading span{
  color:#c01818;
  font-weight:700;
  letter-spacing:1px;
  font-size:15px;
}

.section-heading h2{
  font-size:42px;
  margin-top:15px;
  margin-bottom:15px;
  color:#111;
}

.section-heading p{
  color:#555;
  font-size:18px;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.step-box{
  background:#f8f8f8;
  padding:40px 30px;
  border-radius:20px;
  position:relative;
  transition:0.3s;
  border:1px solid #eee;
}

.step-box:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.step-number{
  width:60px;
  height:60px;
  background:#c01818;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:800;
  margin-bottom:25px;
}

.step-box h3{
  font-size:24px;
  margin-bottom:15px;
  color:#111;
}

.step-box p{
  color:#555;
  line-height:1.8;
  font-size:16px;
}

.features{
  padding:70px 7%;
  background:#fff;
}

.section-title{
  text-align:center;
  font-size:42px;
  margin-bottom:50px;
  color:#111;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.feature-box{
  background:#f8f8f8;
  padding:35px 28px;
  border-radius:18px;
  transition:0.3s;
  border:1px solid #eee;
}

.feature-box:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.feature-box h3{
  font-size:24px;
  margin-bottom:15px;
  color:#c01818;
}

.feature-box p{
  color:#555;
  line-height:1.7;
  font-size:16px;
}

.cta-section{
  background:#c01818;
  color:#fff;
  text-align:center;
  padding:80px 7%;
}

.cta-section h2{
  font-size:46px;
  margin-bottom:20px;
}

.cta-section p{
  font-size:19px;
  max-width:850px;
  margin:auto;
  line-height:1.8;
  margin-bottom:35px;
}

.chat-btn{
  background:#fff;
  color:#c01818;
  text-decoration:none;
  padding:16px 38px;
  border-radius:50px;
  font-size:18px;
  font-weight:800;
  display:inline-block;
  transition:0.3s;
}

.chat-btn:hover{
  background:#111;
  color:#fff;
}

.support{
  padding:70px 7%;
  background:#fff;
}

.support-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.support-card{
  background:#f8f8f8;
  border-radius:18px;
  padding:35px;
  border:1px solid #eee;
}

.support-card h3{
  color:#111;
  margin-bottom:15px;
  font-size:25px;
}

.support-card p{
  color:#555;
  line-height:1.8;
  margin-bottom:20px;
}

.support-card a{
  color:#c01818;
  text-decoration:none;
  font-weight:700;
}

footer{
  background:#111;
  color:#ccc;
  text-align:center;
  padding:30px 7%;
  line-height:1.8;
  font-size:14px;
}

.floating-chat{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#c01818;
  color:#fff;
  padding:16px 24px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  z-index:999;
  animation:pulse 1.8s infinite;
}

@keyframes pulse{
  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.05);
  }

  100%{
    transform:scale(1);
  }
}

@media(max-width:768px){

  .hero{
    padding-top:50px;
  }

  .hero-text h1{
    font-size:40px;
  }

  .section-title{
    font-size:34px;
  }

  .section-heading h2{
    font-size:34px;
  }

  .cta-section h2{
    font-size:34px;
  }
}