﻿section {
    margin-bottom: 30px;
}

    section h2 {
        font-size: 20px;
        margin: 0 0 15px;
    }

/* 服务流程 */
#service ol {
    list-style: decimal;
    padding-left: 20px;
}

/* 常见问题 */
#faq dl {
    padding-left: 20px;
}

#faq dt {
    font-weight: bold;
    margin: 0 0 5px;
}

/* 用户评价 */
#reviews {
    display: flex;
    justify-content: space-between;
}

.review {
    width: 45%;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .review img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 10px;
    }


@media (max-width: 768px) {
    #reviews {
        flex-direction: column;
    }

    .review {
        width: 100%;
        margin-bottom: 20px;
    }
}