#fw-section-custom-html-4f5630ce-12a4-4b6e-8cbd-43ceb5847a04 {

div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjust columns dynamically */
    gap: 10px; /* Add space between buttons */
    justify-content: center; /* Center the grid */
    align-items: center; /* Align items vertically */
}

button {
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #333;
}

button:active {
    background-color: #444;
}

}