
#galaxy-tarife-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.tarif-box {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.tarif-box:hover {
    transform: translateY(-5px);
}
.btn-galaxy {
    background: #c00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
#galaxy-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#galaxy-popup.visible {
    visibility: visible;
    opacity: 1;
}
.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    width: 400px;
}
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
}
