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: #E8EAF6;
}
.header {
    padding: 20px;
    background: linear-gradient(to right, #bbf0ff, #0072FF); 

    color: #fff;
}
.header h1 {
    margin: 0;
    font-size: 24px;
    color: #000;
    font-weight: 600;
    font-size: 30px;
}
.header p {
    margin: 5px 0;
    font-size: 16px;
    color: #000;
    font-size: 14px;
}
.address {
    font-size: 14px;
    margin-top: 10px;
}
.scrollable-images {
    position: relative;
    width: calc(100% - 0.4cm);
    margin: 0.2cm auto;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.image-slider {
    display: flex;
    animation: scroll 2s linear infinite;
}
.image-slider img {
    width: 100%;
    flex-shrink: 0;
    
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.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;
}
.iframe-container {
    padding: 0px;
    background-color: #e9f7ef;
}
.iframe-container iframe {
    width: 400px;
    height: 800px;
    border: none;
    border-radius: 5px;
}
.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;
}
#install-button {
    position: fixed;
    bottom: 20px;
    right: 50px;
    left: 70px;
    transform: translateX(-50%);
    background-color: #17A2B8;
    color: white;
    padding: 10px 118px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    
}

#a2hs-button:hover {
    background-color: #20C997;
}
