/* Hero CTA Button Styles */

.hero-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--main-green) 0%, var(--main-green-light) 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(159, 188, 11, 0.4);
    border: none;
    position: relative;
    z-index: 1;
}

.hero-cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(159, 188, 11, 0.5);
}

.hero-cta-main .cta-icon {
    font-size: 20px;
}

.hero-cta-main .cta-text {
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-cta-main {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}