body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
}

.buttons-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

.button {
    border-radius: 12px;
    font-weight: 600;
}

.call {
    background-color: #ffe082;
    color: #000;
}

.howto,
.message,
.whatsapp {
    background-color: #4a4a4a;
    color: #fff;
}

.floating-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none; /* Чтобы нельзя было кликнуть, когда скрыто */
}

.floating-menu.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.address {
    text-align: center;
    margin-bottom: 24px;
}

footer {
    background: #f5f5f5;
    padding: 24px;
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .buttons-bar {
        flex-direction: column;
    }

    .floating-menu {
        justify-content: center;
    }
}

  .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: #3273dc; /* Bulma primary */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 9999;
  }
  
  .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  
  .scroll-to-top:hover {
    background-color: #276cda;
  }
