body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

#navbar {
    background: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

#products .post {
    display: inline-grid;
    width: 30%; /* Adjust the width as needed */
    margin: 10px; /* Adjust the margin as needed */
    text-align: center;
    vertical-align: top;
    box-sizing: border-box;
}

#branchs .post {
    display: inline-grid;
    width: 240px; /* Adjust the width to fit 5 items in one row */
    margin: 10px; /* Adjust the margin as needed */
    text-align: center;
    vertical-align: top;
    box-sizing: border-box;
}





#navbar ul {
    list-style: none;
    display: flex;
}

#navbar ul li {
    margin: 0 10px;
}

#navbar ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 20px;
    margin: 20px 0;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Thumbnail image style */
.thumb-image {
  max-width: 100%; /* Make the image responsive */
  height: 225px;
  display: block; /* Remove extra space below inline images */
  margin: 0 auto; /* Center the image within its container */
}
/* Thumbnail style */
.thumb {
  max-width: 100%; /* Make the image responsive */
  height: auto;
}
 .view-all-button {
        background-color: #B90E0A;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s;
        position: absolute;
        right: 5%;
        top: 5%;
    }

    .view-all-button:hover {
        background-color: #A91B0D;
    }
