
.sections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
  box-sizing: border-box;
  justify-content: space-between;
}

/* --- SECTION CARD --- */
.section {
  flex: 1 1 calc(33.333% - 16px); /* 3 columns minus gaps */
  display: flex;
  flex-direction: column;
  min-width: 250px;
}




.sections-grid {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  width: 100%; 
  display: grid;
  /* Define Auto Row size */
  /* grid-auto-rows: 100px;  */
  /*Define our columns */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
  grid-gap: 1em;

  box-sizing: border-box;
}

.section {
    border-radius: 8px;
    color: #fff;
    background: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column; /* ensures equal vertical spacing */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}


/* --- HEADINGS --- */
.section h3 {
  margin: 0 0 14px;
  font-size: 1.18rem;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.2px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eee;
}

/* --- LIST & LINKS --- */
.section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.section li {
  margin: 15px 0;
}

.section a {
  text-decoration: none;
  color:#222;;
  font-size: 0.97rem;
  transition: color 0.22s ease, padding-left 0.22s ease;
  display: inline-block;
  line-height: 2;
}


.section a:hover {
    color:#004a52
}


.help_contact h2 {
    font-weight: 800 !important;
    font-size: 50px;
}

.help_contact h6 {
    color: #716f6f
}

.help_contact .img-wrapper{
    width: 500px;
}

.help_contact img {
    height: 100%;
    width: 100%;
}

.chat_category p {
padding: 20px;
color: #888;
}
.chat_category a {
width: 10%;
text-align: center;
border: none;
box-shadow: none;
line-height: 40px;
font-size: 15px;
}

.chat_category li a {
color: #888;
}

.chat_category ul li {
    width: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    font-size: 15px;
    cursor: pointer;
    line-height: 30px;
    color: #888;
    text-align: center;
    border-radius: 5px;
}

.chat_category li:hover{
    background:  #005f69;
    color: #fff;
}
.chat_category li.active{
    background:  #005f69;
    color: #fff;
}

.chat_category li:hover a {
    color: #fff;
}



