.hero-text {
    color: var(--primary);
}

.span-hero {
    color: var(--secondary);
}

.btn {
    background-color: var(--secondary);
    color: var(--tertiary);
    font-weight: bold;
    transition: 200ms ease-in-out;
}

.btn:hover {
    background-color: var(--primary);
    color: var(--tertiary);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.25rem;
    }

    .section-1 {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .section-1 {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .hero {
        text-align: center;
    }

    .hero-text {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .lead {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
        display: inline-block;
    }

    .span-hero {
        display: block;
    }
}