.download-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e9ecef;
    text-decoration: none;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(9, 87, 99, .08),
            transparent);
    opacity: 0;
    transition: .35s;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: #095763;
    box-shadow: 0 15px 40px rgba(9, 87, 99, .12);
}

.download-card:hover::before {
    opacity: 1;
}

.download-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 16px;
    background: #fff3f3;
    color: #e53935;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.download-content {
    flex: 1;
}

.download-content h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.download-content span {
    color: #888;
    font-size: 14px;
}

.download-action {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #095763;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.download-card:hover .download-action {
    transform: rotate(-15deg) scale(1.1);
}

@media (max-width: 768px) {
    .custom-faq .accordion-body {
        padding: 25px 10px;
    }
}