*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f7fc;
    min-height:100vh;
}

.container{
    width:100%;
    min-height:100vh;
}

h1{
    background:#4f46e5;
    color:white;
    text-align:center;
    padding:20px 10px;
    font-size:clamp(1.5rem,4vw,2.5rem);
}

.search-box{
    width:90%;
    max-width:700px;
    margin:25px auto;
    display:flex;
}

.search-box input{
    flex:1;
    padding:15px;
    border:none;
    outline:none;
    border-radius:10px 0 0 10px;
    font-size:16px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.search-box button{
    padding:15px 25px;
    border:none;
    background:#4f46e5;
    color:white;
    cursor:pointer;
    border-radius:0 10px 10px 0;
    font-size:16px;
    transition:.3s;
}

.search-box button:hover{
    background:#4338ca;
}

.info-card{
    width:90%;
    max-width:1200px;
    margin:20px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.card{
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.card h3{
    color:#6b7280;
    font-size:13px;
    margin-bottom:10px;
    letter-spacing:1px;
}

.card p{
    font-size:18px;
    font-weight:600;
    word-wrap:break-word;
}

#map{
    width:90%;
    max-width:1200px;
    height:500px;
    margin:20px auto;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

/* Tablet */

@media (max-width:992px){

    .info-card{
        grid-template-columns:repeat(2,1fr);
    }

    #map{
        height:450px;
    }
}

/* Mobile */

@media (max-width:768px){

    .search-box{
        flex-direction:column;
        gap:10px;
    }

    .search-box input{
        border-radius:10px;
    }

    .search-box button{
        border-radius:10px;
        width:100%;
    }

    .info-card{
        grid-template-columns:1fr;
    }

    .card{
        text-align:center;
    }

    #map{
        height:350px;
    }
}

/* Small Mobile */

@media (max-width:480px){

    h1{
        padding:18px 10px;
    }

    .card{
        padding:15px;
    }

    .card p{
        font-size:16px;
    }

    #map{
        height:300px;
    }
}