.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.hero-blur-1 {
    top: -10%;
    left: -10%;
}

.hero-blur-2 {
    bottom: 0;
    right: -10%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 80%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.dark-mode .hero-image img {
    box-shadow: var(--shadow-dark);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) translateZ(20px);
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 90%;
}