/* Override default center layout */
.umzug-body {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 0;
    gap: 120px;
}

/* HERO SECTION */
.umzug-hero {
    position: relative;
    width: 100%;
    min-height: 720px; /* gives vertical dominance */
    overflow: hidden;
}

/* IMAGE LOCKED TO LEFT EDGE */
.umzug-hero-image {
    position: absolute;
    top: 0;
    left: 10px;

    width: 45%;
    height: 100%;

    background: url('/image/Zusteller.png') center / cover no-repeat;
    background-color: transparent;

    border-radius: 12px; /* subtle rounding */
}

/* CENTERED CONTENT AREA */
.umzug-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 80px 80px;

    display: flex;
    align-items: center;
}

.umzug-hero-content {
    margin-left: auto;
    max-width: 520px;

    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.umzug-hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;

    background: linear-gradient(180deg, #1c3062, #3d579a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.umzug-hero-content p {
    font-size: 22px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;

    background: linear-gradient(180deg, #3d579a, #4d66a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.umzug-cta {
    align-self: flex-start;
    padding: 14px 28px;
    background: linear-gradient(90deg, #3d579a, #4d66a5);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.umzug-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

/* RABATT SECTION */
.rabatt-section {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #435a93, #435685);
    padding: 80px 0;
    overflow: hidden;
}

.rabatt-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;

    display: flex;
    align-items: center;
    min-height: 420px;
}

.rabatt-content {
    max-width: 520px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.rabatt-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.rabatt-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* IMAGE LOCKED TO RIGHT EDGE */
.rabatt-image {
    position: absolute;
    top: 0;
    right: 0;

    width: 40%;
    height: 100%;

    background: url('/image/Rabatt.png') center / cover no-repeat;
    border-radius: 14px 0 0 14px;
}

/* GLOBAL FIXES */
html, body {
    width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}