body {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    color: #f0f0f0;
    line-height: 1.6;
}

/* Secțiunea aplicare staff */
.staff-apply {
    padding: 80px 20px;
    text-align: center;
}

.apply-title {
    font-size: 42px;
    font-weight: 900;
    color: #6698FF;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(102, 152, 255, 0.5);
}

.apply-desc {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Container cu buton + imagini laterale */
.apply-box {
    position: relative;
    gap: 30px;
}

/* Imaginile laterale */
.side-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.side-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px #6698ff);
}

/* Butonul de aplicare */
.btn-apply {
    display: inline-block;
    background: linear-gradient(135deg, #6698FF, #483D8B);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    /* face butonul rotunjit */
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(102, 152, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: linear-gradient(135deg, #7aaaff, #5a4dbd);
    box-shadow: 0 12px 28px rgba(102, 152, 255, 0.6);
    transform: scale(1.05);
}



.important-card {
    background: linear-gradient(90deg, #ffb34733, #ff696133);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255, 105, 97, 0.13);
    padding: 24px 28px;
    margin-bottom: 38px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 1.15rem;
    border: 2px solid #ff6961;
}

.important-icon {
    font-size: 2.1rem;
    color: #ff6961;
    margin-right: 6px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px #ff696188);
}