/* Custom styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom focus styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Ensure proper spacing */
.prose {
    max-width: none;
}

.prose h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.prose p {
    margin-bottom: 1rem;
}

.prose ul {
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

/* Link hover effects */
a {
    transition: color 0.2s ease-in-out;
}

/* Button hover effects */
button,
.btn {
    transition: all 0.2s ease-in-out;
}

/* Mobile menu animation */
#mobileMenu {
    transition: all 0.3s ease-in-out;
}

/* Card hover effects */
.shadow-md {
    transition: box-shadow 0.3s ease-in-out;
}

/* Print styles */
@media print {
    header,
    footer,
    .no-print {
        display: none;
    }
}
