/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

.whatsapp-btn {
  background-color: #1d7f1e;
  color: #ffffff;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #166617;
  color: #ffffff;
}

.whatsapp-btn i {
  color: #ffffff;
}

.icon-gap {
  margin-right: 8px; /* or 10px or whatever spacing you like */
}

.bg-custom-green {
      background-color: green;
    }
    .icon-gap {
      margin-right: 10px;
    }
    .text-white li {
      list-style: none;
      padding: 8px 0;
    }
    
.btn-3
{
	display: inline-block;
    padding: 6px 12px;
    margin-bottom: 31px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: none;
    border-radius: 10px;
}