.page {
  padding: 2rem 1rem;
  font-family: 'Inter', sans-serif;
  color: #000;
  background-color: #fff;
}

.contact-viral h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #000;
}

.contact-viral {
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin: 0 auto;
  max-width: 1200px;
}

.feature-box {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background: #000000;
  border-radius: 20px;
  overflow: hidden;
  padding: 15px;
}

.feature-box.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.feature-image img {
  max-width: 60%;
  border-radius: 10px;
}

.feature-content {
  flex: 1;
  padding: 30px 40px;
}

.feature-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #ffffff;
}

.feature-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.feature-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.feature-content ul li {
  list-style-type: disc;
  color: #fff;
  margin-bottom: 10px;
}


.blue-link {
  color: #4c8ef7;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex
}

.arrow-icon {
  width: 18px;
  height: auto;
}

.contact-grid  {
  margin: 0px 0px 20px 0px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  color: #fff;
  text-align: center;
  border-radius: 40px;
  
}

.grid-box {
  background-color: #000; 
  border-radius: 28px;
  padding: 40px;
  width: 100%;
  max-width: 580px;
  text-align: left;
  color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.why-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.why-box ul {
  list-style-type: disc;
  padding-left: 20px;
}

.why-box ul li {
  margin-bottom: 10px;
  font-size: 15px;
}


@media (max-width: 768px) {

  /* Feature box becomes column */
  .feature-box {
    flex-direction: column !important;
    text-align: center;
    padding: 20px;
  }

  .feature-item img {
      height: 20px;
  }

  .feature-image, .feature-content {
    padding: 20px;
  }

  .feature-content h3 {
    font-size: 22px;
  }

  .feature-content p,
  .feature-content ul li {
    font-size: 15px;
  }
}
