.aim-download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0274be;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s ease;
    border: 2px solid #0274be;
    margin: 10px 0;
}

.aim-download-button:hover {
    background: #025a94;
    border-color: #025a94;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(2, 116, 190, 0.3);
}

.aim-download-button:active {
    transform: translateY(0);
}

.aim-download-icon {
    font-size: 18px;
    line-height: 1;
}

.aim-download-text {
    line-height: 1;
}

/* Astra theme specific adjustments */
.ast-container .aim-download-button,
.site-content .aim-download-button {
    margin: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .aim-download-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}