.grid-item {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center; /* Center align the text */
    height: 100%; /* Make all grid items the same height */
    box-sizing: border-box;
}

.grid-item-title {
    font-size: 2em;
    margin-bottom: 10px;
}

.grid-item-description {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.grid-item-button {
    background-color: #04AA6D;
    border: 2px solid #FFA836; /* Add border properties */
    color: #ffffff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2em;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px; /* Optional: Add border-radius for rounded corners */
    
}

.grid-item img {
    width: 100%; /* Ensure the image fills the grid item */
    border-radius: 5px; /* Apply border-radius to the image */

    object-fit: cover;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 20px;
    height: 100%;
}