.help-container {
    padding: 30px;
    margin-top: 20px;
}

.help-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.help-title {
    color: #3f79b6;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.help-subtitle {
    color: #9ea3a6;
    font-size: 18px;
    margin: 0;
}

.help-content {
    margin-bottom: 40px;
}

.help-section {
    margin-bottom: 40px;
}

.section-title {
    color: #3f79b6;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8ecf0;
}

.indicator-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.indicator-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #3f79b6;
    transition: all 0.3s ease;
}

.indicator-item:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.indicator-name {
    color: #3f79b6;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.indicator-desc {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.help-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e8ecf0;
}

.footer-note {
    color: #9ea3a6;
    font-size: 14px;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .help-container {
        padding: 20px;
        margin-top: 10px;
    }
    
    .help-title {
        font-size: 24px;
    }
    
    .help-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .indicator-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .indicator-item {
        padding: 15px;
    }
    
    .indicator-name {
        font-size: 16px;
    }
    
    .indicator-desc {
        font-size: 13px;
    }
}