body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f9fa;
}
.container {
    max-width: 375px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
}
.header {
    padding: 20px;
    background-color: #007bff;
    color: #fff;
}
.header h1 {
    margin: 0;
    font-size: 24px;
}
.header p {
    margin: 5px 0;
    font-size: 16px;
}
.address {
    font-size: 14px;
    margin-top: 10px;
}
.scrollable-images {
    position: relative;
    overflow: hidden;
}
.carousel {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.carousel img {
    width: 100%;
    flex-shrink: 0;
}
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.carousel-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.dots {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}
.dots span {
    height: 10px;
    width: 10px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}
.dots span.active {
    background-color: #007bff;
}
.icons {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
}
.icons div {
    text-align: center;
}
.icons div img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #007bff;
}
.iframe-container {
    padding: 20px;
    background-color: #e9f7ef;
}
.iframe-container iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
}
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
#a2hs-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0078FF;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#a2hs-button:hover {
    background-color: #005FCC;
}
