/* Combined CSS file - styles.css, search.css, footer.css, mobile-search-fix.css, animate.min.css */

/* styles.css */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #333;
}

/* search.css */
.search-container {
    position: relative;
    margin-bottom: 2rem;
}

/* footer.css */
.footer {
    background: #EEF3FB;
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px;
}

/* mobile-search-fix.css */
@media (max-width: 768px) {
    .search-input {
        width: 100%;
    }
}

/* animate.min.css */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation: fadeIn 1s ease-in-out;
}
