.bento-container-3cdb341c {
    background: transparent;
    color: #fff;
    padding: 20px;
    font-family: inherit; /* Align with theme */
    width: 80%;
    margin: 0 auto;
}
.bento-main-title {
    border: 2px solid #fff;
    border-radius: 20px;
    display: inline-block;
    padding: 5px 20px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    background-color: transparent;
}
.bento-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.bento-section {
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 25px 20px 20px;
    position: relative;
    margin-top: 15px;
    width: 100%;
}
.bento-section-title {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #d4d8ff; /* Closer to design */
    color: #000;
    padding: 4px 15px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
}
.bento-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    background: #333;
    transition: transform 0.3s ease;
}
.bento-box:hover {
    transform: scale(1.02);
}
.bento-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.bento-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #caffd8;
    color: #000;
    padding: 4px 15px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.bento-grid-2, .bento-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.mt-4 { margin-top: 40px; }

/* Tablet and Desktop Responsiveness */
@media (min-width: 768px) {
    .bento-row {
        flex-direction: row;
        align-items: stretch;
    }
    .bento-section-headquarter {
        flex: 1;
    }
    .bento-section-regional {
        flex: 2;
    }
    .bento-grid-2 {
        grid-template-columns: 1fr 1fr;
        height: 100%;
    }
    .bento-grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .bento-box {
        height: 250px;
    }
}