.main-title {
    font-size: 50px;
    padding: 50px 0;
}
img.main-img {
    width: 100%;
    margin-bottom: 30px;
}
p.description {
    color: #333;
    margin: 10px 0;
}

.ooh-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.ooh-item {
    background: linear-gradient(90deg, #efcc7263, #815f0847);
    border-radius: 50%;
    text-align: center;
    padding: 30px; 
    display: flex;
    align-items: center;
    justify-content: center; 
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    
    flex: 0 0 calc(25% - 23px); 
}

.ooh-item-text {
    font-weight: bold;
    color: #333;
}

.row-equal-height {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; 
    row-gap: 20px;
}


.row-equal-height .col-info {
    display: flex;
    flex-direction: column;    
    justify-content: center;
}

.device-info-wrapper,
.device-images {
    padding: 30px 0;
}

.device-images .title {
    padding: 15px 0;
}

.da-trien-khai {
    padding-bottom: 80px;
}

@media (max-width: 1024px) {
    .ooh-wrapper {
        padding: 40px 15px;
        gap: 20px;
    }
    .ooh-item {
        flex: 0 0 calc(50% - 10px); 
        max-width: 280px;  
        margin: 0 auto; 
    }
}

@media (max-width: 780px) {
    .ooh-item {
        flex: 0 0 100%;     
        max-width: 260px;  /
    }
}

/* Áp dụng cho màn hình nhỏ dưới 767px (Màn hình Mobile) */
@media (max-width: 767px) {
    .row > [class^="col-"] {
        margin-bottom: 20px; /* Tạo khoảng cách 20px dưới mỗi cột khi bị xếp dọc */
    }
    
    /* Tùy chọn: Xóa margin của cột cuối cùng để không bị thừa khoảng trống ở đáy hàng */
    .row > [class^="col-"]:last-child {
        margin-bottom: 0;
    }
}

img.full-cover {
    height: 100%;
    object-fit: cover;
}