/* Custom Styles */
* {
    font-family: 'Noto Sans KR', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Smooth scroll offset for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Custom button hover effects */
button, a[href^="#"] {
    transition: all 0.3s ease;
}

/* Form input focus styles */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

