/* CTA Button Styles */
.article-cta {
    background-color: rgba(37, 211, 102, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.article-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.article-cta p {
    margin-bottom: 20px;
    color: #555;
}

.cta-button {
    display: inline-block;
    background-color: #25D366;
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none !important;
}

.cta-section {
    background-color: #e8f8f0;
    padding: 50px 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.cta-section h2, .cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.cta-section p {
    margin-bottom: 25px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
