.find-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
}
.find-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--navy-color);
    font-weight: 700;
}
.find-desc{
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: center;
    max-width: 800px;
    margin-bottom: 30px;
}
.find-form{
    align-items: center;
    /* width: 100%; */
}
.find-form input[type="text"] {
    /* width: 100%; */
    max-width: 600px;
    padding: 10px;
    border: 1px solid var(--warm-gray);
    border-radius: 5px;
    font-size: 1rem;
    margin-right: 10px;
}
.find-form button {
    padding: 10px 20px;
    background-color: var(--muted-gold);
    color: #333;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
}
/* .find-form button:hover {
    background-color: var(--primary-color-hover);
} */

@media screen and (max-width: 768px) {
    .find-section {
        padding: 10px;
    }
    .find-section h2 {
        font-size: 1.5rem;
    }
    .find-desc {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .find-form input[type="text"] {
        width: 100%;
        margin-bottom: 10px;
    }
    .find-form button {
        width: 100%;
    }
    .find-form button:hover{
        color: white;
    background-color: var(--navy-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(12, 35, 64, 0.4);
    }
    
    .find-form {
        flex-direction: column;
        align-items: stretch;
    }
    .find-form input[type="text"] {
        margin-right: 0;
        width:200px;
    text-align: center;
    align-items: center;
    align-self: center;
    align-content: center;
    }
    .find-form button {
        margin-top: 10px;
    }
    .map-container {
        max-width: 100%;
       
    }
    .map-container img{
        width: 100%;
        height: auto;
    }


    
}