.cta {
    height: 400px;
    padding: 0;
    background-image: url('../images/banner-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f5f7fa;
}

.cta .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 80px; /* 增加左侧内边距 */
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左对齐 */
    justify-content: center;
}

.cta h2 {
    color: #333;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.3;
    text-align: left;
    margin-left: 0px !important;
}

.cta-buttons {
    display: flex;
    justify-content: flex-start;
}

.cta .primary-btn {
    background-color: #3457DC !important;
    color: #ffffff !important;
    padding: 12px 32px;
    font-size: 16px;
    border-radius: 4px;
    border: none;
}

.cta .primary-btn:hover {
    background-color: #2a46b8 !important;
    transform: translateY(-2px);
}