@media (max-width: 1024px) {

    /* הגדרות ה-Hero הספציפי לעמוד המיקסינג */
    body section#contact-hero-section.hero {
        /* 1. מתיחה לגובה מלא של המסך (כולל שורת הכתובת) */
        height: 100svh !important; 
        min-height: 100vh;
        width: 100%;
        
        /* 2. גורם לתמונה למלא את כל הגובה והרוחב בלי חיתוך מוזר */
        background-size: cover !important; 
        
        /* 3. מיקום התמונה: מרכוז מושלם */
        background-position: center center !important; 
        
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    /* החזרת הלוגו של ה-Mixing (ה-Glitch) לגודל המלא שרצית */
    .hero-logo {
        /* גודל מלא כפי שמוגדר ב-CSS הראשי (650px או 750px לפי מה שבחרת) */
        width: 750px !important; 
        max-width: 90%;          /* מגבלה עדינה כדי שלא יגע בקצוות המסך הפיזי */
        height: auto;
        
        /* האנימציה המקורית שלך */
        animation: glitch-effect 3s steps(100) infinite; 
    }

    /* הבטחת השחרה מלאה על כל השטח המתוח */
    body section#contact-hero-section.hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8) !important;
        z-index: 1;
    }
}

@media (max-width: 768px) {

    body section#contact-hero-section.hero {
        /* 1. מחזירים ל-Cover כדי שהתמונה תמלא את כל המסך בלי עיוותים */
        background-size: cover !important; 
        
        /* 2. מזיזים את נקודת המיקוד: 
           במקום center (50%), אנחנו אומרים לו להראות את החלק שנמצא ב-25% מצד שמאל.
           זה יחתוך את צד ימין הריק וישאיר אותך ואת הציוד המרכזי בפריים. */
        
        height: 100svh !important;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
	}

@media (max-width: 1024px) {
.contact-header {
	margin-top: -70px;
}
}

