.hero-banner {
    margin-top: 40px;
    width: 100%;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    position: relative;
}

@media (max-width: 768px){
    .hero-banner{
        min-height: 60vh;
    }
}
.cta-button {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;   /* Space between image and button */
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-button:hover {
    background: #ff5520;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,53,0.5);
    animation: none;
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Disable hover lift on mobile */
    .cta-button:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(255,107,53,0.4);
    }
}
/* Process Section */
.process-section {
    padding: 2rem 2rem;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 2rem;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.benefit-card p {
    color: var(--text-gray);
}
