/* עיצוב Hero Section */
.hero-section {
    margin-top: 100px;
    color: white;
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}

.hero-content {
    max-width: 1200px;
    margin: auto;
    background: rgba(0, 119, 182, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    max-width: 900px;
    text-align: right;
}

.cta-button {
    background-color: #ffb703;
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ffa500;
    transform: translateY(-5px);
}

