section {
    padding: 40px 0;
    text-align: center;
}

h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: normal;
    color: #333;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    font-weight: normal;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

/* 导航栏样式 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: #fff7f2;
}

.navbar .logo {
    width: 150px;
}

.navbar .contact {
    display: flex;
    gap: 15px;
}

.navbar .contact img {
    height: 30px;
}

/* 横幅区域 */
.banner {
    background-color: #fff7f2;
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: 0;
}

.banner-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.banner-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.banner-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.banner-btns a:hover{
	color: inherit;
}

.banner-btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.try-btn {
    background-color: transparent;
    border: 1px solid #e97c34;
    color: #e97c34;
}

.free-btn {
    background-color: #e97c34;
    color: white;
}

/* 功能特点区域 */
.features {
    background-color: #fff;
    padding: 40px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff7f2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon img {
    max-width: 60%;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
}

/* 流程图区域 */
.workflow {
    background-color: #fff;
    padding: 50px 0;
}

.workflow-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.workflow-image {
    margin: 30px 0;
}

/* 步骤区域 */
.steps {
    background-color: #fff7f2;
    padding: 50px 0 0;
}

.step {
    margin-bottom: 80px;
    text-align: left;
}

.step-even {
    background-color: #fff;
}

.step-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
    align-items: center;
}

.step-text {
    flex: 1;
    padding-right: 40px;
}

.step-image {
    flex: 1;
    text-align: center;
}

.step-image img {
    max-width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 底部表单区域 */
.footer-form {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.form-avatar {
    position: absolute;
    left: 50px;
    top: -40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: left;
}

.form-desc {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.form-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-select {
    width: 120px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23999"><path d="M7 10l5 5 5-5H7z"/></svg>') no-repeat right 10px center;
}

.form-btn {
    width: 100%;
    padding: 12px;
    background-color: #e97c34;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-btn:hover {
    background-color: #d46b28;
}