/* CTA section styles */
.cta {
    background-color: #2563eb;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    color: #bfdbfe;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

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

.btn-white {
    background-color: white;
    color: #2563eb;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-white:hover {
    background-color: #f8fafc;
}

.btn-blue {
    background-color: #1d4ed8;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-blue:hover {
    background-color: #1e40af;
}