/* Start custom CSS for html, class: .elementor-element-58c0f91e */.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
}

.method-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(20, 75, 125, 0.08);
  text-decoration: none;
  position: relative;
  transition: 0.2s ease;
}

.method-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 75, 125, 0.14);
}

.method-card img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.method-content {
  padding-right: 34px;
}

.method-content h3 {
  margin: 0 0 7px;
  color: #164477;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
}

.method-content p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.method-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 2px solid #5d99c9;
  border-radius: 50%;
  transform: translateY(-50%);
}

.method-arrow::before {
  content: "→";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  color: #5d99c9;
  font-size: 19px;
  line-height: 1;
}

.new-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 8px;
  background: #f72585;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  vertical-align: middle;
}

@media (max-width: 1224px) {
  .methods-grid {
      min-height: 88px;
    padding: 14px 16px;
  }
  .method-card img {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
   .method-content h3 {
    font-size: 15px;
  }
  .method-content p {
    font-size: 13;
  }
}

@media (max-width: 1024px) {
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .method-card {
    min-height: 88px;
    padding: 14px 16px;
  }

  .method-card img {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .method-content h3 {
    font-size: 14px;
  }

  .method-content p {
    font-size: 12;
  }
}/* End custom CSS */