/* Others Section */
.others-section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.others-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* .search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
} */
/* .list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
} */

.item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.item iframe {
    width: 100%;
    height: 200px;
}

.item-content {
    padding: 1rem;
    text-align: center;
}

.item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

