.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: #0d6efd !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateX(5px);
    border-left: 4px solid #0d6efd !important;
}

.bg-gradient-dark-bottom {
    background: linear-gradient(to top, rgba(10, 29, 55, 0.9) 0%, rgba(10, 29, 55, 0) 100%);
}

.hover-translate-y {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-translate-y:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 29, 55, 0.1) !important;
}