.combinator-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}
.combinator-text {
    flex: 1;
    min-width: 280px;
}
.combinator-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.combinator-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.combinator-buttons a {
    margin-right: 10px;
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.btn-primary {
    background-color: #198754;
    color: white;
}

.btn-outline {
    border: 1px solid #666;
    color: #333;
}

.badge {
    background-color: #ffc107;
    color: #000;
    margin-left: 10px;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.combinator-image {
    flex: 1;
    text-align: center;
}
.combinator-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .combinator-container {
        flex-direction: column;
        padding: 20px;
    }

    .combinator-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin-top: 20px;
    }
}


.combinator-promo {
    margin: 50px auto;
    padding: 30px;
    max-width: 1100px;
    display: flex;
    gap: 40px;
    align-items: center;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


.explore-box:hover {
    transform: translateY(-5px); /* Ridică ușor cardul */
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* Mărește umbra */
    transition: all 0.3s ease; /* Animație fluidă */
}