* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}


main section {
    margin-left: 2rem;
    margin-right: 2rem;
}

main section img {
    margin-left: 2rem;
}

#destino-disney, #destino-playa {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin: 1rem 0;
    justify-content: center;
}

#destino-disney h3, #destino-playa h3 {
    margin-bottom: 1rem;
}

#destino-disney img, #destino-playa img {
    max-width: 30%;
    height: auto;
    border-radius: 10px;
    flex: 1 1 40%;
}

#destino-disney .description, #destino-playa .description {
    flex: 1 1 50%;
}

#servicios {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #555;
}

#servicios p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

#servicios p:last-child {
    margin-bottom: 0;
}

#nosotros {
    background-color: #f2f2f2;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#nosotros p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

#nosotros p:last-child {
    margin-bottom: 0;
}


@media (max-width: 768px) {
   
    #destino-disney, #destino-playa {
        flex-direction: column; 
        text-align: center;
    }

    #destino-disney img, #destino-playa img {
        max-width: 40%;
        height: auto;
        flex: 1 1 auto;
        margin: 0 auto; 
    }

    #destino-disney .description, #destino-playa .description {
        flex: 1 1 auto;
    }
}