/* Add custom CSS styles below */ 
.s-head-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.s-body-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
}

.s-body-section > div {
  width: calc(98% / 3);
}

.s-body-content {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.custome-structure {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
@media (max-width: 768px) {
  .custome-structure {gap: 10px;}
    .s-body-section {
        gap: 5px;
    }
}