.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.grid-container.bordered {
    border: 1px solid #dfdfdf;
}

.grid-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
}

.grid-item.bordered {
    border-top: 1px solid #dfdfdf;
    border-left: 1px solid #dfdfdf;

    &:nth-child(-n+2) {
        border-top: none;
    }

    &:nth-child(odd) {
        border-left: none;
    }
}

/* Tablet styles */
@media (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}

/* Mobile styles */
@media (max-width: 780px) {
    .grid-container {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
        border: none !important;
    }

    .grid-item {
        padding: 30px 15px 30px 15px;
        border-left: none !important;
        border-right: none !important;
    }

    .grid-item.bordered {
        border-bottom: 1px solid #dfdfdf !important;
    }

    .grid-item.bordered:last-child {
        border-bottom: none !important;
    }

    .responsive-image {
        max-width: 100%;
        height: auto;
    }
}
    }

    .grid-item.bordered:not(:last-child) {
        border-bottom: 1px solid #dfdfdf !important;
    }
}

.responsive-image {
    width: 100%;
}


.ez-row {
    display: flex;
    flex-direction: row;
}

.ez-column {
    display: flex;
    flex-direction: column;
}

.ez-justify-content-center {
    justify-content: center;
}

.ez-justify-content-space-between {
    justify-content: space-between;
}

.ez-align-items-center {
    align-items: center;
}

.ez-gap-1 {
    gap: 2px;
}

.ez-gap-2 {
    gap: 4px;
}

.ez-gap-3 {
    gap: 6px;
}

.ez-gap-4 {
    gap: 8px;
}

.ez-gap-5 {
    gap: 10px;
}

.ez-gap-6 {
    gap: 14px;
}

.ez-gap-7 {
    gap: 18px;
}

.ez-gap-8 {
    gap: 22px;
}

.ez-gap-9 {
    gap: 36px;
}

.ez-gap-10 {
    gap: 30px;
}

.ez-position-relative{
    position: relative;
}

.ez-hr{
    margin: 10px 0;
    height: 1px solid #dfdfdf;
}