/* 内容整体下移（关键调整） */
.content-spacing {
    padding-top: 32.5px; /* 增大顶部间距，将内容整体下移更多 */
    padding-bottom: 40px;
}

/* 设计步骤流程 */
.design-steps-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* 步骤卡片样式 */
.step-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #eaeaea;
}

.step-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #dcdcdc;
}

/* 步骤头部样式 */
.step-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: #ffd100;
    color: #000000ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.step-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
}

/* 步骤内容样式 */
.step-content {
    display: flex;
    flex-wrap: wrap;
}

.step-image {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-description {
    flex: 2;
    padding: 1.5rem;
}

.step-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.example-highlight {
    background-color: #f7f7f7;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 4px solid #ffd100;
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .step-content {
        flex-direction: column;
    }
    
    .step-image,
    .step-description {
        padding: 1rem 1.5rem;
    }
}

/* 步骤2特殊样式 */
#showSkillBtn {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#accessibilityBtn {
    width: 75%;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

#showSkillBtn {
    background-color: #ffd100;
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
}

#showSkillBtn:hover {
    background-color: #ffd100;
    transform: translateY(-2px);
}

#accessibilityBtn {
    background-color: #ffd100;
    color: #ffd100;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 15px rgba(255, 230, 0, 0.3);
}

#accessibilityBtn:hover {
    background-color: #ffd100;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 88, 88, 0.4);
}

.skill-display {
    text-align: center;
    margin-bottom: 1.5rem;
}

.skill-word {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    min-height: 2.5rem;
    color: #333;
}