#otel-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#otel-popup-content {
    background: #fff;
    padding: 20px;
    max-width: 800px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.otel-card {
    flex: 1 1 calc(50% - 20px);
    text-align: center;
}
.otel-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
