.quick-links {
    background: #f8f9fa;
    padding: 60px 0;
}

.link-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    height: 100%;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.quick-link-description {
    display: none;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    min-height: 500px;
    border-left: 5px solid #890dfdbe;
}

.quick-link-description.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.quick-link-button {
    transition: all 0.3s ease;
    padding: 15px 20px;
    border: 2px solid #dee2e6;
    font-weight: 500;
}

.quick-link-button.active {
    background-color: #890dfdbe;
    color: white;
    border-color: #890dfdbe;
    transform: translateX(10px);
}

.quick-link-button:hover:not(.active) {
    background-color: #cd98ffbe;
    border-color: #0dfdfd;
    transform: translateX(5px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.quick-link-description h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.quick-link-description h5 {
    color: #495057;
    margin-top: 25px;
    margin-bottom: 15px;
}

.quick-link-description ul {
    padding-left: 20px;
}

.quick-link-description li {
    margin-bottom: 8px;
    line-height: 1.5;
}