


.visit-us-container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.left-column, .right-column {
    width: 100%;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.left-column button {
    /* Use WordPress theme button style */
    /* Apply .wp-block-button__link for theme submit button styling */
}

.left-column button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

details {
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

details[open] {
}

summary {
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    outline: none;
}

summary::marker {
    content: "> ";
}

details[open] summary::marker {
    content: "v ";
}

.visitor-counter {
    text-align: center;
    margin-top: 20px;
    font-size: 1.2em;
}

.visit-us-banner {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.find-me-banner img {
    width: 100%;
    height: auto;
    display: block;
}

#address-info a {
    text-decoration: none;
    font-size: 1.5em;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    font-size: 2em;
}


.social-icons a {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

details summary {
    transition: background-color 0.3s ease;
}
details summary:hover {
}
