/* About CTA Section */
.about-cta {
    background: #0d58c6;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.about-cta__content {
    max-width: 64rem;
    margin: 0 auto;
}

.about-cta__title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-cta__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.about-cta__button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.about-cta__button--primary {
    background: white;
    color: #0d58c6;
}

.about-cta__button--primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.about-cta__button--secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.about-cta__button--secondary:hover {
    background: white;
    color: #0d58c6;
    transform: translateY(-2px);
}

/* Responsive */
@media (min-width: 640px) {
    .about-cta__buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-cta {
        padding: 3rem 0;
    }
    
    .about-cta__title {
        font-size: 1.875rem;
    }
} 
