body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f5f7;
    color: #333;
}
.container {
    max-width: 400px;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}
.container:hover {
    transform: scale(1.02);
}
.header {
    padding: 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}
.header p {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: 300;
}
.address {
    font-size: 14px;
    margin-top: 10px;
    color: #ddd;
}

/*
.scrollable-images {
    position: relative;
    width: calc(100% - 1cm);
    margin: 0.5cm auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.image-slider {
    display: flex;
    animation: scroll 5s linear infinite;
}
.image-slider img {
    width: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.image-slider img:hover {
    transform: scale(1.05);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200%); }
} */

.slider-container {
    max-width: 100%;
    margin: 10px auto;
    overflow: hidden auto;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    animation: scrollSlider 105s linear infinite;
}

.slide {
    min-width: 2%;
    margin: 10px;
    text-align: center;
    flex-shrink: 0;
}

.slide img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.1);
}

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.icons {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background-color: #f9fafb;
    border-top: 1px solid #eee;
}
.icons div {
    text-align: center;
    transition: transform 0.3s ease;
}
.icons div:hover {
    transform: scale(1.1);
}
.icons div img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #2575fc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.icons div p {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 500;
}
.iframe-container {
    padding: 10px;
    background-color: #eef4f9;
    border-top: 1px solid #ddd;
}
.iframe-container iframe {
   /* width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    
        width: 100%;
        height: 700px;
        border: none;
        border-radius: 10px;
}
.floating-button {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    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 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
#install-button {
    position: fixed;
    bottom: 10px;
    right: 20px;
    left: 25px;
    background-color: #2575fc;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
#install-button:hover {
    background-color: #1d63c6;
    transform: scale(1.05);
}