.fg-dbea4342-container {
    width: 100%;
    background-color: #fcfbf9; /* Default outer background to match design */
    border-radius: 8px;
    overflow: hidden;
    padding: 1px; /* Provide space for border */
}

/* Use grid gap with a background color for the border effect */
.fg-dbea4342-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: #eaeaea; /* Border color */
}

.fg-dbea4342-item {
    background-color: #fcfbf9; /* Matches outer background */
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center aligned vertically */
}

.fg-dbea4342-title {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 700;
    color: #2c3338;
}

.fg-dbea4342-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #646c77;
}

@media (max-width: 1024px) {
    .fg-dbea4342-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .fg-dbea4342-grid {
        grid-template-columns: 1fr;
    }
    .fg-dbea4342-item {
        padding: 30px 20px;
    }
}