/* עיצוב בסיסי */
html, body {
    font-family: 'Heebo', sans-serif;
    background-color: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

section {
    padding: 10px 50px;
    margin: auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    section {
        padding: 10px 15px; /* Reduce side padding for sections */
    }
}

/* Floating buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.floating-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #0077b6;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

.floating-buttons a:hover {
    background-color: #005f87;
}
