.hero {
    padding: 20px 20px 40px;
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    text-align: left;
    flex: 1;
    max-width: 500px;
}

.hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 24px;
    color: black;
    line-height: 1.2;
}

.hero-text p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    color: #3C3C3C;
    margin: 0 0 32px 0;
}

.hero-text .contact-button {
    padding: 16px 32px;
    font-size: 18px;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    margin-top: -40px;
}

.hero-illustration img {
    width: 600px;
    height: auto;
}

.arrow-section {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.arrow-section-left {
    transform: rotate(120deg);
    padding-left: 20px;
}

.arrow-section-right {
    transform: scaleX(-1) rotate(180deg);
    padding-left: 150px;
}

.arrow-image {
    width: 250px;
    height: auto;
}

@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 64px;
    }

    .hero-text p {
        font-size: 24px;
    }

    .hero-illustration img {
        width: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 20px 30px;
    }

    .hero-container {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .hero-text p {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .hero-text .contact-button {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }

    .hero-illustration {
        margin-top: 20px;
    }

    .hero-illustration img {
        width: 400px;
    }

    .arrow-section {
        height: 80px;
    }

    .arrow-section-left,
    .arrow-section-right {
        padding: 0;
    }

    .arrow-image {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 15px 16px 25px;
    }

    .hero-container {
        gap: 10px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-illustration {
        margin-top: -10px;
    }

    .hero-illustration img {
        width: 280px;
    }

    .arrow-image {
        width: 140px;
    }
}