/* CTA Button Styling - page_styles/CTAstyles.css */
.cta-container {
    text-align: center;
    margin: 2rem 0;
}

.cta-button-primary {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.cta-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

.benefit-pillars {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
}

.benefits-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bullet {
    color: #667eea;
    font-weight: bold;
    padding: 0 0.3rem;
}