/* CTA Block Styles */
.wpe-cta-section {
    background: linear-gradient(135deg, #0f4c21 0%, #1a7431 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.wpe-cta-content h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.wpe-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.wpe-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.wpe-btn-cta-primary,
.wpe-btn-cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.wpe-btn-cta-primary {
    background: white;
    color: #0f4c21;
}

.wpe-btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.wpe-btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.wpe-btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .wpe-cta-section {
        padding: 2rem 1.5rem;
    }

    .wpe-cta-content h2 {
        font-size: 1.75rem;
    }

    .wpe-cta-buttons {
        flex-direction: column;
    }

    .wpe-cta-buttons button {
        width: 100%;
        justify-content: center;
    }
}