.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-card {
    transition: all 0.3s ease;
}

.hero-gradient {
    background-image: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.3) 100%),
        url('../../imgs/hero1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-gradient h1, .hero-gradient p{
    color: white;
}

.hero-gradient p{
    color: white;
    font-size: 1.1em;
    font-style: italic;
}

.hero-gradient .green-accent{
    color: #84cc1f;
}

.hero-gradient .green-bg-accent{
    background-color: #84cc1f;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}