.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 120px;
    gap: 80px;
    min-height: calc(100vh - 180px);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #fff, #c3c3c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-image {
        order: -1;
    }
}
