.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
}

.btn {
    padding: 15px 30px;
    border-radius: 16px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 52px;
    width: auto;
    text-align: center;
    vertical-align: middle;
}

.btn-primary {
    background-color: #667eea;
    color: white;
    border: none;
    min-width: 160px;
    height: 52px;
    width: auto;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 16px;
    margin-top: 0;
}

.btn-primary:hover {
    background-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background-color: white;
    color: #1a2b4e;
    border: 2px solid #e2e8f0;
    min-width: 160px;
    height: 52px;
    width: auto;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 16px;
}

.btn-secondary:hover {
    border-color: #667eea;
    color: #667eea;
}