.wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 90%;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    animation: fadeIn 1s ease-out forwards;
}

.map-text-container {
    margin: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s forwards;
}

.map-container {
    flex: 1;
    height: 500px;
    width: 500px; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 3s forwards;
}

#map {
    height: 100%;
    width: 100%;
}

.text-container h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #d10c0c;
}

.text-container p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.text-container i {
    margin-right: 10px;
    color: #d10c0c;
}

@media (max-width: 768px) {
    .wrapper {
        height: auto;
    }
    .map-text-container {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .text-container {
        width: 100%;
        text-align: center;
    }

    .text-container h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
        text-align: center;
    }

    .text-container p {
        font-size: 1em;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .text-container i {
        width: 20px;
        margin-right: 8px;
    }

    .map-container {
        width: 100%;
        height: 300px;
        position: relative;
        margin-top: 20px;
        margin: 0;
        overflow: hidden;
    }

    #map {
        width: 100%;
        height: 200px ;
        position: relative;
        border-radius: 8px;
    }

    .container {
        margin: 20px;
        padding-bottom: 20px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}