* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.page {
  padding: 0 20%;
}

.heading {
  font-size: 2.5rem;
  padding-top: 50px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.subheading {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 40px;
}

.first-subheading {
  margin-top: 10px;
}

.subheading2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 30px;
}

.para {
  font-size: 1.1rem;
}

.list-item {
  font-size: 1.1rem;
  margin-left: 20px;
}

.points {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
  .heading {
    font-size: 1.5rem;
    padding-top: 50px;
    margin-bottom: 20px;
  }

  .subheading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0px;
  }

  .first-subheading {
    margin-top: 0px;
  }

  .ques {
    font-size: 1rem;
    font-weight: 600;

    margin-bottom: 20px;
    color: black;
  }

  .para {
    font-size: 0.8rem;
  }

  .connect-details-para {
    margin-top: 10px;
  }

  .points {
    margin-bottom: 10px;

    font-size: 1.1rem;
  }

  .list-item {
    font-size: 0.8rem;
  }
}

:where([class^="ri-"])::before {
  content: "\f3c2";
}

.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-button {
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: white;
  color: #0d6efd;
  transform: translateX(4px);
  border: 2px solid #0d6efd;
}

h2 {
  text-shadow: 1px 2px 2px #0000008a;
}

.list-content {
  margin-left: 20px;
  
}
.list-head{
  font-weight: 600;
}
.benefits-note {
  padding: 10px 20px;
}
.application-head {
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .service-card:hover {
    transform: none;
  }

  .cta-button:hover {
    transform: none;
  }
}