.cta-section-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin: 30px auto;
    max-width: 800px;
}
.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    border: none;
}
.cta-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}
.cta-button-wrap {
    display: inline-block;
}
.cta-button, .cta-button-preview {
    display: inline-block;
    background-color: #ffffff;
    color: #764ba2;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border: none;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-color: #f7fafc;
    color: #667eea;
}
