* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #1b2631, #34495e, #5dade2, #1abc9c);
    color: #fff;
    padding: 30px 0; /* הקטנה של הגובה ב-50px */
    text-align: center;
    transition: background 2s ease;
    background-size: 400% 400%;
    animation: gradientBackground 5s ease infinite; /* זמן אנימציה מהיר יותר */
}

@keyframes gradientBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

header .phone {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffecdb;
}

header .whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

header .whatsapp-btn i {
    margin-right: 10px;
}

header .whatsapp-btn:hover {
    background-color: #1ebd56;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.services-section {
    padding: 50px 0;
    background-color: #ecf0f1;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.service {
    margin-bottom: 30px;
}

.service h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service p {
    font-size: 1.1rem;
}

footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.footer-text {
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-text i {
    margin-left: 5px;
    color: #e74c3c;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
