.hero-section {
    min-height: 480px;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.icon-container {
    transition: transform 0.3s ease;
}

.icon-container:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}