body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

header {
    width: 100%;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.slider-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.welcome-text {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    text-align: left;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

h1, h2, h3 {
    color: #0099FF;
    text-align: center;
}

.contact-form {
    max-width: 360px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: 0.3s;
    overflow: hidden;
}

.contact-form:hover {
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}

.contact-form h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 3px;
    text-align: left;
    font-size: 13px;
    color: #444;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: calc(100% - 20px);
    font-size: 14px;
    background: #fafafa;
    transition: 0.3s;
    box-sizing: border-box;
    margin: 0 auto;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007BFF;
    background: #fff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.2);
    outline: none;
}

.contact-form textarea {
    height: 80px;
    resize: none;
}

.contact-form button {
    padding: 10px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 600;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #0056b3, #00408d);
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.testimonial-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.testimonial {
    width: 45%;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.client-name {
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 768px) {
    .testimonial-row {
        flex-direction: column;
        align-items: center;
    }
    .testimonial {
        width: 90%;
    }
}

.footer-container {
    background: #808080;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    position: relative;
}

.footer-container::after {
    content: "עיצוב וביצוע Udi Yogev";
    display: block;
    font-size: 14px;
    color: white;
    margin-top: 10px;
}
