.guide-container {
    max-width: 800px;
    margin: 0 auto;
}
.feature-card {
    border-left: 4px solid #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 2rem;
}
.step-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.step-item {
    position: relative;
    padding-left: 0;
    margin-bottom: 0.8rem;
    counter-increment: step-counter;
}
.step-item::before {
    content: counter(step-counter) ".";
    font-weight: bold;
    color: #0d6efd;
    margin-right: 0.5rem;
}
.support-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
}
.icon-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.icon-header i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: #0d6efd;
}
.step-list {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}