/* Main Styles */
body {
    font-family: 'Open Sauce Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Modal Styles */
.consultationModal {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.consultationModal.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Focus accessibility */
*:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Hero section */
.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Card hover effect */
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #dc2626;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* .hidden { display: none; }
.error-message { color: red; margin-top: 0.5rem; }
.animate-spin { animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } } */