/* 主标题区域样式覆盖 */
.hero {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/wave-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-color: transparent;
    padding-bottom: 0px;
}

.hero::before {
    display: none; /* 移除蒙层 */
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    color: #333; /* 根据背景图调整文字颜色 */
}

.hero h1 {
    color: #333;
}

.hero p {
    color: #555;
}

.feature i {
    color: #3457DC;
}