/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 86, 179, 0.25);
    font-weight: 700;
    border: none;
}

.btn-primary:hover {
    background-color: #004494;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.35);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 86, 179, 0.1);
}

.btn-secondary:hover {
    background-color: #f0f8ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.15);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
}

.cta-section .btn-primary:hover {
    background-color: #f8f9fa;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Remove Jump to Live Button */
.page-footer, 
footer-btn, 
.tooltip-dialog, 
.footer-close-btn, 
.footer-bg, 
.tooltip-box, 
.tooltip-desc, 
.tooltip-icon {
    display: none !important;
}
