.accordion-container {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #ccc;
    font-family: 'Merriweather', serif;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-toggle {
    display: none;
}

.accordion-header {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.4s;
    user-select: none;
}

.accordion-header:hover {
    background-color: #ddd;
}

@media (max-width: 767px) {
    .contact-info {
        flex-direction: column;
    }
    .text-info {
        margin-right: 0;
        margin-bottom: 16px;
    }
    .map-container {
        width: 100% !important;
        max-width: 100%;
    }
}

.accordion-header::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.2s ease-out;
}

.accordion-toggle:checked ~ .accordion-header::after {
    content: '+';
    transform: rotate(45deg);
}

.accordion-content {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
    padding: 0 18px;
}

.accordion-toggle:checked ~ .accordion-content {
    max-height: 1000px; /* A large enough value to accommodate the content */
    padding: 18px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.text-info {
    flex: 1;
    margin-right: 20px;
}

.map-container {
    width: 50%;
    height: 300px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.line-separator {
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
}

iframe {
    height: 100%;
    width: 100%;
}
