/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .search-box {
        padding: 1.5rem !important;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Print styles */
@media print {
    .navbar,
    footer,
    .btn {
        display: none !important;
    }
    
    body {
        padding-top: 0 !important;
    }
}