/* Button Styles */
.btn {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    min-height: 44px;
    line-height: 1.5;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 100, 249, 0.3);
}

.btn-secondary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
}



