/* CTA Banner Block CSS */
.cta-banner-inner {
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 35px rgba(27, 94, 32, 0.2);
    transition: transform 0.3s ease;
}

.cta-banner-inner:hover {
    transform: translateY(-3px);
}

.cta-tagline {
    color: #f7e05e;
}

.cta-icon-wrapper {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-icon-wrapper svg {
    width: 40px;
}

.cta-btn {
    font-size: 1rem;
    box-shadow: 0 8px 15px rgba(247, 224, 94, 0.2) !important;
    min-width: 170px;
    justify-content: center;
    border-radius: 50px !important;
}

.cta-btn:hover {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    color: #1b5e20 !important;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3) !important;
}

.cta-btn .arrow {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.cta-btn:hover .arrow {
    transform: translate(2px, -2px);
}