* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: #333;
    background: #faf8f5;
    line-height: 1.6;
}

/* Header */
.header {
    background: linear-gradient(135deg, #e8756a 0%, #d4547a 100%);
    color: #fff;
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 6px;
}

.header .subtitle {
    font-size: 18px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.header .tagline {
    margin-top: 24px;
    font-size: 15px;
    opacity: 0.8;
}

/* Wave divider */
.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* Section */
.section {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #d4547a;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #e8756a;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    color: #d4547a;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* Steps */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.step {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    width: 200px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.step-num {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8756a, #d4547a);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 14px;
}

.step h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.step p {
    font-size: 13px;
    color: #888;
}

/* About */
.about-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.about-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    line-height: 2;
}

/* Footer */
.footer {
    background: #3a3a3a;
    color: #aaa;
    text-align: center;
    padding: 30px 20px;
    font-size: 13px;
    line-height: 2;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer .icp {
    margin-top: 8px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 640px) {
    .header h1 {
        font-size: 36px;
    }

    .header .subtitle {
        font-size: 15px;
    }

    .section {
        padding: 40px 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .step {
        width: 160px;
    }
}
