/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Graphic */
.hero-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.hero-graphic i {
    position: absolute;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 1.8;
    animation: float 3s ease-in-out infinite;
}

.hero-graphic i:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.hero-graphic i:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.hero-graphic i:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .hero-graphic {
        width: 250px;
        height: 250px;
        margin: 1rem auto 0;
        position: relative;
        top: -1rem;
    }
    
    .hero-graphic i {
        font-size: 3rem;
    }
    
    .hero-graphic i:nth-child(1) {
        top: 15%;
        left: 15%;
    }
    
    .hero-graphic i:nth-child(2) {
        top: 55%;
        right: 15%;
    }
    
    .hero-graphic i:nth-child(3) {
        bottom: 15%;
        left: 45%;
    }
}

@media (max-width: 480px) {
    .hero-graphic {
        width: 200px;
        height: 200px;
        margin: 0.5rem auto 0;
        top: -1.5rem;
    }
    
    .hero-graphic i {
        font-size: 2.5rem;
    }
}
