/* How to Use 模块样式 */

/* 标题区域样式 */
#how-to-use .text-center {
    background: transparent;
    padding: 30px 20px;
    margin-bottom: 30px;
}

#how-to-use .text-center h2 {
    color: #1b5e20;
    font-size: 48px;
    margin-bottom: 10px;
}

#how-to-use .text-center p {
    color: #1b5e20;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

/* 步骤卡片样式 */
#how-to-use .step-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#how-to-use .step-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* 步骤编号样式 */
#how-to-use .step-card > div:first-child {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #66bb6a, #43a047);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* 步骤标题样式 */
#how-to-use h3 {
    color: #1b5e20;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

/* 步骤描述样式 */
#how-to-use .step-card p {
    color: #1b5e20;
    line-height: 1.6;
    font-weight: 400;
    font-size: 14px;
}

/* 步骤箭头和完成图标区域 */
#how-to-use .mt-4 {
    margin-top: 16px;
}

#how-to-use .mt-4 span {
    color: #66bb6a;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

#how-to-use .mt-4 svg {
    margin-left: 4px;
    width: 16px;
    height: 16px;
}

/* How to Use 模块移动端样式 */
@media (max-width: 768px) {
    /* How to Use 标题移动端样式 */
    #how-to-use h2 {
        font-size: 32px !important;
        font-weight: 500 !important;
    }
    
    #how-to-use p {
        font-size: 16px !important;
    }
    
    /* 步骤卡片标题移动端样式 */
    #how-to-use h3 {
        font-size: 16px !important;
        font-weight: 500 !important;
    }
    
    /* 步骤描述移动端样式 */
    #how-to-use .step-card p {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
}