/* 使用指南部分样式 */
.guide-section {
    margin-bottom: 3rem;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.guide-step:hover {
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #001f3f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* 注意事项部分 */
.notes-section {
    background: #fff3f3;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
}

.notes-section h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.notes-list {
    list-style: none;
    padding-left: 0;
}

.notes-list li {
    margin-bottom: 0.8rem;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}

.notes-list li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: #dc3545;
}